summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-nds/ypserv/files/rpc.yppasswdd-r1')
-rw-r--r--net-nds/ypserv/files/rpc.yppasswdd-r121
1 files changed, 0 insertions, 21 deletions
diff --git a/net-nds/ypserv/files/rpc.yppasswdd-r1 b/net-nds/ypserv/files/rpc.yppasswdd-r1
deleted file mode 100644
index 9c2c2b416c53..000000000000
--- a/net-nds/ypserv/files/rpc.yppasswdd-r1
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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 $?
-}