commit: 171e9555edadd36660e4d225b9d005a6e0a37f30
Author: Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Tue May 3 00:00:26 2016 +0000
Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Tue May 3 00:00:46 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=171e9555
net-nds/ypserv: remove unused initscript
net-nds/ypserv/files/rpc.ypxfrd | 22 ----------------------
1 file changed, 22 deletions(-)
diff --git a/net-nds/ypserv/files/rpc.ypxfrd b/net-nds/ypserv/files/rpc.ypxfrd
deleted file mode 100644
index 573b010..0000000
--- a/net-nds/ypserv/files/rpc.ypxfrd
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-depend() {
- need net portmap ypserv
-}
-
-start() {
- ebegin "Starting rpc.ypxfrd"
- YOPTS=""
- if [ -n "${YPXFRD_OPTS}" ]; then YOPTS="-- ${YPXFRD_OPTS}"; fi
- start-stop-daemon --start --quiet --exec /usr/sbin/rpc.ypxfrd ${YOPTS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping rpc.ypxfrd"
- start-stop-daemon --stop --quiet --exec /usr/sbin/rpc.ypxfrd
- eend $?
-}