summaryrefslogtreecommitdiff
path: root/sys-freebsd/freebsd-usbin/files/rpc.statd.initd
diff options
context:
space:
mode:
Diffstat (limited to 'sys-freebsd/freebsd-usbin/files/rpc.statd.initd')
-rw-r--r--sys-freebsd/freebsd-usbin/files/rpc.statd.initd20
1 files changed, 0 insertions, 20 deletions
diff --git a/sys-freebsd/freebsd-usbin/files/rpc.statd.initd b/sys-freebsd/freebsd-usbin/files/rpc.statd.initd
deleted file mode 100644
index 163af5a4b4a1..000000000000
--- a/sys-freebsd/freebsd-usbin/files/rpc.statd.initd
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need net rpcbind
-}
-
-start() {
- ebegin "Starting NFS statd"
- start-stop-daemon --start --quiet --exec \
- /usr/sbin/rpc.statd -- $rpcstatdopts
- eend $? "Error starting NFS statd"
-}
-
-stop() {
- ebegin "Stopping NFS statd"
- start-stop-daemon --stop --quiet --exec /usr/sbin/rpc.statd
- eend $? "Error stopping NFS statd"
-}