Hotfix: Copy a current version of the log conversion tools to each log directory

This commit is contained in:
Lorenz Meier
2013-08-13 07:57:39 +02:00
parent da9d9781f9
commit 0025e9ca90
3 changed files with 9 additions and 586 deletions
+9
View File
@@ -604,6 +604,15 @@ int sdlog2_thread_main(int argc, char *argv[])
errx(1, "unable to create logging folder, exiting.");
}
const char *converter_in = "/etc/logging/log_converter.zip";
char* converter_out = malloc(200);
sprintf(converter_out, "%s/log_converter.zip", folder_path);
if (file_copy(converter_in, converter_out)) {
errx(1, "unable to copy conversion scripts, exiting.");
}
free(converter_out);
/* only print logging path, important to find log file later */
warnx("logging to directory: %s", folder_path);