X-Git-Url: https://code.citadel.org/?p=citadel-docker.git;a=blobdiff_plain;f=ctdlvisor.c;fp=ctdlvisor.c;h=0fa7d7f7fdf3df7fce27ca5b412794d42200bbfd;hp=64e6c04c441b63e0e4ce4c1b8670e2ccdc94cbf1;hb=171db44cf0f9ad686c2e0a77c30caadc181ee239;hpb=f8944e3483bb27625c55ac6909b008e842d4675a diff --git a/ctdlvisor.c b/ctdlvisor.c index 64e6c04..0fa7d7f 100644 --- a/ctdlvisor.c +++ b/ctdlvisor.c @@ -25,6 +25,7 @@ pid_t citserver_pid; pid_t webcit_pid; pid_t webcits_pid; int shutting_down = 0; +char *logging_flag = "-x1"; // Call this instead of exit() just for common diagnostics etc. void ctdlvisor_exit(int code) { @@ -93,8 +94,8 @@ pid_t start_citadel() { pid_t pid = fork(); if (pid == 0) { fprintf(stderr, "ctdlvisor: executing citserver\n"); - detach_from_tty(); - execlp("/usr/local/citadel/citserver", "citserver", "-x9", "-h", CTDL_DIR, NULL); + //detach_from_tty(); + execlp("/usr/local/citadel/citserver", "citserver", logging_flag, "-h", CTDL_DIR, NULL); exit(errno); } else { @@ -108,8 +109,8 @@ pid_t start_webcit() { pid_t pid = fork(); if (pid == 0) { fprintf(stderr, "ctdlvisor: executing webcit (http)\n"); - detach_from_tty(); - execlp("/usr/local/webcit/webcit", "webcit", "-x9", "-p", "80", "uds", CTDL_DIR, NULL); + //detach_from_tty(); + execlp("/usr/local/webcit/webcit", "webcit", logging_flag, "-p", "80", "uds", CTDL_DIR, NULL); exit(errno); } else { @@ -123,8 +124,8 @@ pid_t start_webcits() { pid_t pid = fork(); if (pid == 0) { fprintf(stderr, "ctdlvisor: executing webcit (https)\n"); - detach_from_tty(); - execlp("/usr/local/webcit/webcit", "webcit", "-x9", "-s", "-p", "443", "uds", CTDL_DIR, NULL); + //detach_from_tty(); + execlp("/usr/local/webcit/webcit", "webcit", logging_flag, "-s", "-p", "443", "uds", CTDL_DIR, NULL); exit(errno); } else { @@ -212,7 +213,7 @@ int main(int argc, char **argv) { symlink(CTDL_DIR "/keys", "/usr/local/webcit/keys"); /* parse command-line arguments */ - while ((a=getopt(argc, argv, "cmd")) != EOF) switch(a) { + while ((a=getopt(argc, argv, "cmdx:")) != EOF) switch(a) { // test this binary for compatibility and exit case 'c': @@ -230,9 +231,15 @@ int main(int argc, char **argv) { database_cleanup_mode = 1; break; + // logging level + case 'x': + logging_flag = malloc(50); + snprintf(logging_flag, 50, "-x%d", atoi(optarg)); + break; + // any other parameter makes it crash and burn default: - fprintf(stderr, "usage\n"); + fprintf(stderr, "%s: usage: %s [-c] [-m] [-d] [-x log_level]\n"); exit(1); }