Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-nds/ypserv/files/
Date: Tue, 03 May 2016 00:02:44
Message-Id: 1462233646.171e9555edadd36660e4d225b9d005a6e0a37f30.wizardedit@gentoo
1 commit: 171e9555edadd36660e4d225b9d005a6e0a37f30
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 3 00:00:26 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Tue May 3 00:00:46 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=171e9555
7
8 net-nds/ypserv: remove unused initscript
9
10 net-nds/ypserv/files/rpc.ypxfrd | 22 ----------------------
11 1 file changed, 22 deletions(-)
12
13 diff --git a/net-nds/ypserv/files/rpc.ypxfrd b/net-nds/ypserv/files/rpc.ypxfrd
14 deleted file mode 100644
15 index 573b010..0000000
16 --- a/net-nds/ypserv/files/rpc.ypxfrd
17 +++ /dev/null
18 @@ -1,22 +0,0 @@
19 -#!/sbin/runscript
20 -# Copyright 1999-2004 Gentoo Foundation
21 -# Distributed under the terms of the GNU General Public License v2
22 -# $Id$
23 -
24 -depend() {
25 - need net portmap ypserv
26 -}
27 -
28 -start() {
29 - ebegin "Starting rpc.ypxfrd"
30 - YOPTS=""
31 - if [ -n "${YPXFRD_OPTS}" ]; then YOPTS="-- ${YPXFRD_OPTS}"; fi
32 - start-stop-daemon --start --quiet --exec /usr/sbin/rpc.ypxfrd ${YOPTS}
33 - eend $?
34 -}
35 -
36 -stop() {
37 - ebegin "Stopping rpc.ypxfrd"
38 - start-stop-daemon --stop --quiet --exec /usr/sbin/rpc.ypxfrd
39 - eend $?
40 -}