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

Fixes #224.
This commit is contained in:
Tobias Brunner 2012-09-12 17:11:54 +02:00
parent 629cdca82c
commit dc80ef0cde
1 changed files with 6 additions and 2 deletions

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;