svn commit: trunk/busybox/miscutils

vda at busybox.net vda at busybox.net
Thu Dec 4 13:57:59 UTC 2008


Author: vda
Date: 2008-12-04 05:57:59 -0800 (Thu, 04 Dec 2008)
New Revision: 24261

Log:
clarify which version of crond is known to put tasks in separate pgrps



Modified:
   trunk/busybox/miscutils/crond.c


Changeset:
Modified: trunk/busybox/miscutils/crond.c
===================================================================
--- trunk/busybox/miscutils/crond.c	2008-12-04 13:21:36 UTC (rev 24260)
+++ trunk/busybox/miscutils/crond.c	2008-12-04 13:57:59 UTC (rev 24261)
@@ -779,7 +779,7 @@
 			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 @@
 		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,




More information about the busybox-cvs mailing list