diff options
Diffstat (limited to 'sys-process')
-rwxr-xr-x | sys-process/dcron/files/dcron.init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-process/dcron/files/dcron.init b/sys-process/dcron/files/dcron.init index 841c7bc99170..bf151c38b771 100755 --- a/sys-process/dcron/files/dcron.init +++ b/sys-process/dcron/files/dcron.init @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/dcron/files/dcron.init,v 1.1 2005/09/06 04:43:32 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/dcron/files/dcron.init,v 1.2 2005/09/14 02:52:28 vapier Exp $ depend() { use logger clock hostname @@ -10,7 +10,7 @@ depend() { start() { ebegin "Starting dcron" - setsid /usr/sbin/crond ${DCRON_OPTS} >> /var/log/cron.log 2>&1 + /usr/sbin/crond ${DCRON_OPTS} >> /var/log/cron.log 2>&1 eend $? } |