aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-09-13 02:44:24 +0100
committerSam James <sam@gentoo.org>2024-09-13 02:44:24 +0100
commit3f3ac3a07ce7edef0ff88317c22bc056d63d1b2c (patch)
treeb17c082dfd7729a99fbd965ff8eb35169ceee558 /net-fs/nfs-utils/files/rpc.idmapd.initd
parent*/*: drop ~ia64 from KEYWORDS (diff)
downloadmusl-master.tar.gz
musl-master.tar.bz2
musl-master.zip
net-fs/nfs-utils: treecleanHEADmaster
::gentoo works fine. Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-fs/nfs-utils/files/rpc.idmapd.initd')
-rw-r--r--net-fs/nfs-utils/files/rpc.idmapd.initd25
1 files changed, 0 insertions, 25 deletions
diff --git a/net-fs/nfs-utils/files/rpc.idmapd.initd b/net-fs/nfs-utils/files/rpc.idmapd.initd
deleted file mode 100644
index 61cfd4de..00000000
--- a/net-fs/nfs-utils/files/rpc.idmapd.initd
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-[ -e /etc/conf.d/nfs ] && . /etc/conf.d/nfs
-
-rpc_bin=/usr/sbin/rpc.idmapd
-
-depend() {
- use ypbind net
- need portmap rpc.pipefs
- after quota
-}
-
-start() {
- ebegin "Starting idmapd"
- ${rpc_bin} ${OPTS_RPC_IDMAPD}
- eend $? "make sure DNOTIFY support is enabled ..."
-}
-
-stop() {
- ebegin "Stopping idmapd"
- start-stop-daemon --stop --exec ${rpc_bin}
- eend $?
-}