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 | d2e328414b44aacd5f0736e34328e04166b079f2 (patch) | |
tree | 1935db98c18578da48f8b92f875bc48037d55b2a /sys-process | |
parent | stabilize (diff) | |
download | historical-d2e328414b44aacd5f0736e34328e04166b079f2.tar.gz historical-d2e328414b44aacd5f0736e34328e04166b079f2.tar.bz2 historical-d2e328414b44aacd5f0736e34328e04166b079f2.zip |
dont bother with setsid
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/dcron/Manifest | 8 | ||||
-rwxr-xr-x | sys-process/dcron/files/dcron.init | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys-process/dcron/Manifest b/sys-process/dcron/Manifest index 8ed5710b8865..a094eb34072f 100644 --- a/sys-process/dcron/Manifest +++ b/sys-process/dcron/Manifest @@ -9,7 +9,7 @@ MD5 97ce907f092ad3c6917d9b0c4ccdc419 files/dcron-2.9-EDITOR.patch 634 MD5 a82da32a58b097ea2ccd1b7a4aed72f3 files/dcron-2.9-ldflags.patch 590 MD5 518d22de1cdd927de6c55ffb6a82bc46 files/crontab 823 MD5 11c412642c8bf7caa068dfca3172802c files/dcron-2.9-pidfile.patch 437 -MD5 130e0a9c682f5241c8b67ddebf65e78b files/dcron.init 578 +MD5 25313097a72f3b106e2607d8b8d1b40a files/dcron.init 571 MD5 2db10e843ecdf10a2b3aa5f70322310b files/digest-dcron-2.9-r4 55 MD5 1de333010665696629a381be64dad25a files/dcron-2.9-Makefile.patch 629 MD5 2db10e843ecdf10a2b3aa5f70322310b files/digest-dcron-2.9-r2 55 @@ -20,7 +20,7 @@ MD5 932978359b7a3b3a2d29a96827ceca83 files/dcron-2.7-Makefile-gentoo.diff 534 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) -iD8DBQFDHR6ngIKl8Uu19MoRAl+xAJ9cBaL+Lt6hJnsKbrXsKcyrnkmttgCfc5wB -CftclL3EOc/5eEPSvFzxYwM= -=qaAQ +iD8DBQFDJ1bJgIKl8Uu19MoRAjuzAJ9dOEd2UC1MGaTG7pMzJi1MBbyuWACeI69d +YUusDGa/BufYb1ilEjuST5g= +=DqkC -----END PGP SIGNATURE----- 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 $? } |