X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fprocd.git;a=blobdiff_plain;f=procd.c;h=dd4909ea4168f3b8e5acdd4afdcd27697d76a4d8;hp=e41d98a6a43a6aa8d3b0124f6ed11c9d49fbf1d9;hb=32534f7058d23dcab44408506848cec199e57fbb;hpb=4bccbfa967d756b8c84a62ea4752e936d8545a73 diff --git a/procd.c b/procd.c index e41d98a..dd4909e 100644 --- a/procd.c +++ b/procd.c @@ -29,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; } @@ -42,15 +43,14 @@ int main(int argc, char **argv) { int ch; char *dbglvl = getenv("DBGLVL"); - - ulog_open(ULOG_KMSG, LOG_DAEMON, "procd"); + 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); @@ -60,14 +60,19 @@ 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(); if (getpid() != 1) procd_connect_ubus(); else