starter: Added --nolog option to suppress logging in starter itself

Fixes #224.
This commit is contained in:
Tobias Brunner
2012-09-12 17:15:14 +02:00
parent 629cdca82c
commit dc80ef0cde
+6 -2
View File
@@ -327,8 +327,8 @@ static bool check_pid(char *pid_file)
static void usage(char *name)
{
fprintf(stderr, "Usage: starter [--nofork] [--auto-update <sec>] "
"[--debug|--debug-more|--debug-all]\n");
fprintf(stderr, "Usage: starter [--nofork] [--auto-update <sec>]\n"
" [--debug|--debug-more|--debug-all|--nolog]\n");
exit(LSB_RC_INVALID_ARGUMENT);
}
@@ -372,6 +372,10 @@ int main (int argc, char **argv)
{
current_loglevel = 4;
}
else if (streq(argv[i], "--nolog"))
{
current_loglevel = 0;
}
else if (streq(argv[i], "--nofork"))
{
no_fork = TRUE;