X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fprocd.git;a=blobdiff_plain;f=procd.c;h=a7ac6c18af999520370a19b54c7e1680e305b7b2;hp=ad8028441d597b2c806074b242ee52fa89463605;hb=f2c77756933f22981c1202c039e7f7e24d7247f3;hpb=dc3988c38546c37a02030af8201048272caa7ded diff --git a/procd.c b/procd.c index ad80284..a7ac6c1 100644 --- a/procd.c +++ b/procd.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include @@ -28,11 +29,12 @@ unsigned int debug; static int usage(const char *prog) { - ERROR("Usage: %s [options]\n" + fprintf(stderr, "Usage: %s [options]\n" "Options:\n" - "\t-s \tPath to ubus socket\n" - "\t-h \trun as hotplug daemon\n" - "\t-d \tEnable debug messages\n" + " -s Path to ubus socket\n" + " -h run as hotplug daemon\n" + " -d Enable debug messages\n" + " -S Print messages to stdout\n" "\n", prog); return 1; } @@ -41,13 +43,14 @@ int main(int argc, char **argv) { int ch; char *dbglvl = getenv("DBGLVL"); + int ulog_channels = ULOG_KMSG; if (dbglvl) { debug = atoi(dbglvl); unsetenv("DBGLVL"); } - while ((ch = getopt(argc, argv, "d:s:h:")) != -1) { + while ((ch = getopt(argc, argv, "d:s:h:S")) != -1) { switch (ch) { case 'h': return hotplug_run(optarg); @@ -57,10 +60,17 @@ int main(int argc, char **argv) case 'd': debug = atoi(optarg); break; + case 'S': + ulog_channels = ULOG_STDIO; + break; default: return usage(argv[0]); } } + + ulog_open(ulog_channels, LOG_DAEMON, "procd"); + + setsid(); uloop_init(); procd_signal(); trigger_init(); @@ -69,6 +79,7 @@ int main(int argc, char **argv) else procd_state_next(); uloop_run(); + uloop_done(); return 0; }