diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-30 07:34:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-30 07:34:26 +0000 |
commit | 74485a91a68e4ee0ae765b264d9f98530b4dcb09 (patch) | |
tree | 78e8d041ab3560f39ec7fb680cf2d5ca2ff0df57 /sys-apps/xinetd/files | |
parent | remove oldies; x86; version bump (diff) | |
download | historical-74485a91a68e4ee0ae765b264d9f98530b4dcb09.tar.gz historical-74485a91a68e4ee0ae765b264d9f98530b4dcb09.tar.bz2 historical-74485a91a68e4ee0ae765b264d9f98530b4dcb09.zip |
using start-stop-daemon is pointless since xinetd daemonizes all by itself
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'sys-apps/xinetd/files')
-rw-r--r-- | sys-apps/xinetd/files/xinetd.rc6 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys-apps/xinetd/files/xinetd.rc6 b/sys-apps/xinetd/files/xinetd.rc6 index 40ec58351e4e..72b338690da5 100644 --- a/sys-apps/xinetd/files/xinetd.rc6 +++ b/sys-apps/xinetd/files/xinetd.rc6 @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/files/xinetd.rc6,v 1.18 2004/10/05 22:28:12 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/files/xinetd.rc6,v 1.19 2005/07/30 07:34:26 vapier Exp $ opts="start stop reload restart dump check" @@ -14,8 +14,7 @@ start() { ( # workaround for #25754 unset -f `declare -F | sed 's:declare -f::g'` - start-stop-daemon --start --quiet --exec /usr/sbin/xinetd \ - -- -pidfile /var/run/xinetd.pid ${XINETD_OPTS} + /usr/sbin/xinetd -pidfile /var/run/xinetd.pid ${XINETD_OPTS} ) eend $? } |