diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-04 13:57:59 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-04 13:57:59 +0000 |
commit | 3f70b87c59d2ac801d11d7abd0ef6469d0e49f8a (patch) | |
tree | 703e0f58614a21f7295057195e1c433851560383 | |
parent | 3246c0de12efe901661cceca76c94ac00aae661e (diff) |
clarify which version of crond is known to put tasks in separate pgrps
-rw-r--r-- | miscutils/crond.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/crond.c b/miscutils/crond.c index d2eb115bc..732fbb147 100644 --- a/miscutils/crond.c +++ b/miscutils/crond.c @@ -779,7 +779,7 @@ ForkJob(const char *user, CronLine *line, int mailFd, xmove_fd(mailFd, mail_filename ? 1 : 0); dup2(1, 2); } - /* "standard" cron puts tasks in separate process groups */ + /* crond 3.0pl1-100 puts tasks in separate process groups */ bb_setpgrp(); execlp(prog, prog, cmd, arg, NULL); crondlog(ERR20 "can't exec, user %s cmd %s %s %s", user, prog, cmd, arg); @@ -916,7 +916,7 @@ static void RunJob(const char *user, CronLine *line) if (DebugOpt) { crondlog(LVL5 "child running %s", DEFAULT_SHELL); } - /* "standard" cron puts tasks in separate process groups */ + /* crond 3.0pl1-100 puts tasks in separate process groups */ bb_setpgrp(); execl(DEFAULT_SHELL, DEFAULT_SHELL, "-c", line->cl_Shell, NULL); crondlog(ERR20 "can't exec, user %s cmd %s %s %s", user, |