diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-10-06 19:38:14 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-10-06 19:38:14 +0000 |
commit | 9e37e1a91c67a24d44abf7bb08a5541f2075eb0a (patch) | |
tree | 0e3f559bd9a83e6c326785b4de209812e45ec78c /sys-apps/xinetd | |
parent | stable bump (diff) | |
download | historical-9e37e1a91c67a24d44abf7bb08a5541f2075eb0a.tar.gz historical-9e37e1a91c67a24d44abf7bb08a5541f2075eb0a.tar.bz2 historical-9e37e1a91c67a24d44abf7bb08a5541f2075eb0a.zip |
old
Diffstat (limited to 'sys-apps/xinetd')
-rwxr-xr-x | sys-apps/xinetd/files/svc-xinetd | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/sys-apps/xinetd/files/svc-xinetd b/sys-apps/xinetd/files/svc-xinetd deleted file mode 100755 index 453ad54eaac0..000000000000 --- a/sys-apps/xinetd/files/svc-xinetd +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -#RCUPDATE:3 4:72:This line is required for script management - -. /etc/rc.d/config/functions - -SERVICE=xinetd -opts="start stop" - -autoconfig() { -if [ ! -e /etc/xinetd.conf ] ; then - if [ ! -e /etc/inetd.conf ] ; then - eerror "You need an /etc/xinetd.conf file to run xinetd" - eerror "There is a sample one in /usr/share/docs/xinetd" - return 1 - else - einfo "Auto-creating xinetd.conf from your inetd.conf" - /usr/sbin/xconv.pl < /etc/inetd.conf > /etc/xinetd.conf - fi -fi -} - -start() { - autoconfig - ebegin "Starting supervised ${SERVICE}" - ln -sf ../services/${SERVICE} ${SVCDIR}/control/${SERVICE} - eend $? -} - -stop() { - ebegin "Stopping supervised ${SERVICE}" - if [ -e ${SVCDIR}/control/${SERVICE} ] - then - /usr/bin/svc -dx ${SVCDIR}/control/${SERVICE} - rm ${SVCDIR}/control/${SERVICE} - fi - eend $? -} - -doservice ${@} |