summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-freebsd/freebsd-usbin/files/rpcbind.initd')
-rw-r--r--sys-freebsd/freebsd-usbin/files/rpcbind.initd30
1 files changed, 0 insertions, 30 deletions
diff --git a/sys-freebsd/freebsd-usbin/files/rpcbind.initd b/sys-freebsd/freebsd-usbin/files/rpcbind.initd
deleted file mode 100644
index 1ff98a5ef549..000000000000
--- a/sys-freebsd/freebsd-usbin/files/rpcbind.initd
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-depend() {
- need localmount
- use net
- before inetd
- before xinetd
-}
-
-start() {
- ebegin "Starting rpcbind"
- start-stop-daemon --start --exec /usr/sbin/rpcbind
- local ret=$?
- eend ${ret}
-
- # without, if a service depending on portmap is started too fast,
- # connecting to portmap will fail -- azarah
- # doing that for rpcbind, too -- flameeyes
- sleep 1
- return ${ret}
-}
-
-stop() {
- ebegin "Stopping rpcbind"
- start-stop-daemon --stop --exec /usr/sbin/rpcbind
- eend $?
-}