summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-07-30 07:34:26 +0000
committerMike Frysinger <vapier@gentoo.org>2005-07-30 07:34:26 +0000
commit1368f970d8137c782ff164b4b08bcf827141253e (patch)
tree98fb757d4dd208afcb35e033a169e5f678049dec /sys-apps/xinetd
parentremove oldies; x86; version bump (diff)
downloadgentoo-2-1368f970d8137c782ff164b4b08bcf827141253e.tar.gz
gentoo-2-1368f970d8137c782ff164b4b08bcf827141253e.tar.bz2
gentoo-2-1368f970d8137c782ff164b4b08bcf827141253e.zip
using start-stop-daemon is pointless since xinetd daemonizes all by itself
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sys-apps/xinetd')
-rw-r--r--sys-apps/xinetd/files/xinetd.rc65
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 $?
}