diff options
Diffstat (limited to 'pcr/openrc-net/rpc.yppasswdd-r1')
-rw-r--r-- | pcr/openrc-net/rpc.yppasswdd-r1 | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/pcr/openrc-net/rpc.yppasswdd-r1 b/pcr/openrc-net/rpc.yppasswdd-r1 deleted file mode 100644 index a14762516..000000000 --- a/pcr/openrc-net/rpc.yppasswdd-r1 +++ /dev/null @@ -1,22 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/ypserv/files/rpc.yppasswdd-r1,v 1.4 2004/07/24 06:26:28 eradicator Exp $ - -depend() { - need net portmap ypserv -} - -start() { - ebegin "Starting rpc.yppasswdd" - YOPTS="" - if [ -n "${YPPASSWDD_OPTS}" ]; then YOPTS="-- ${YPPASSWDD_OPTS}"; fi - start-stop-daemon --start --quiet --exec /usr/sbin/rpc.yppasswdd ${YOPTS} - eend $? -} - -stop() { - ebegin "Stopping rpc.yppasswdd" - start-stop-daemon --stop --quiet --exec /usr/sbin/rpc.yppasswdd - eend $? -} |