diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-09-14 02:52:28 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-09-14 02:52:28 +0000 |
commit | 52fe4c02220c37c1cfb382b6fb61e16983068911 (patch) | |
tree | 1658c723129f410303cfb9412ff4c203822701a9 /sys-process/dcron | |
parent | stabilize (diff) | |
download | gentoo-2-52fe4c02220c37c1cfb382b6fb61e16983068911.tar.gz gentoo-2-52fe4c02220c37c1cfb382b6fb61e16983068911.tar.bz2 gentoo-2-52fe4c02220c37c1cfb382b6fb61e16983068911.zip |
dont bother with setsid
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sys-process/dcron')
-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 $? } |