From 0bcba21e893efb9853a68b04674e4bde9da5a1b8 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Mon, 8 May 2000 19:10:36 +0000 Subject: When not debugging, daemonize automatically. --- sysdep/unix/main.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'sysdep/unix/main.c') diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c index 516c4ac..242cff0 100644 --- a/sysdep/unix/main.c +++ b/sysdep/unix/main.c @@ -337,7 +337,12 @@ signal_init(void) */ static char *opt_list = "c:dD:s:"; -static int debug_flag = 1; /* FIXME: Turn off for production use */ + +#ifdef DEBUGGING +static int debug_flag = 1; +#else +static int debug_flag = 0; +#endif static void usage(void) @@ -406,6 +411,16 @@ main(int argc, char **argv) read_config(); + if (!debug_flag) + { + pid_t pid = fork(); + if (pid < 0) + die("fork: %m"); + if (!pid) + return 0; + setsid(); + } + signal_init(); cli_init_unix(); -- cgit v1.2.3