net-fs/nfs-utils: remove unused files
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Sun, 3 Nov 2019 09:36:35 +0000 (10:36 +0100)
committerAaron Bauman <bman@gentoo.org>
Fri, 8 Nov 2019 02:42:07 +0000 (21:42 -0500)
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13533
Signed-off-by: Aaron Bauman <bman@gentoo.org>
net-fs/nfs-utils/files/nfs-utils.conf [deleted file]
net-fs/nfs-utils/files/nfsmount.confd [deleted file]
net-fs/nfs-utils/files/nfsmount.initd [deleted file]

diff --git a/net-fs/nfs-utils/files/nfs-utils.conf b/net-fs/nfs-utils/files/nfs-utils.conf
deleted file mode 100644 (file)
index b9b586c..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-d /var/lib/nfs/rpc_pipefs
-d /var/lib/nfs/v4recovery
-d /var/lib/nfs/v4root
diff --git a/net-fs/nfs-utils/files/nfsmount.confd b/net-fs/nfs-utils/files/nfsmount.confd
deleted file mode 100644 (file)
index 4183536..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-# You will need to set the dependencies in the nfsmount script to match
-# the network configuration tools you are using. This should be done in
-# this file by following the examples below, and not by changing the
-# service script itself.  See /etc/conf.d/netmount for more examples.
-#
-# This is a safe default.
-rc_after="net"
diff --git a/net-fs/nfs-utils/files/nfsmount.initd b/net-fs/nfs-utils/files/nfsmount.initd
deleted file mode 100644 (file)
index 12c7d78..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-[ -e /etc/conf.d/nfs ] && . /etc/conf.d/nfs
-
-depend() {
-       local myneed=""
-       if [ -e /etc/fstab ] ; then
-               myneed="${myneed} $(
-                       awk '!/^[[:space:]]*#/ && ($3 == "nfs" || $3 == "nfs4") {
-                                       if ($3 == "nfs4")
-                                               idmapd = "rpc.idmapd"
-                                       if ($4 ~ /sec=(krb|spkm)/)
-                                               gssd = "rpc.gssd"
-                               }
-                               END { print idmapd " " gssd }
-                               ' /etc/fstab
-                       )"
-       fi
-       config /etc/fstab
-       need portmap rpc.statd ${myneed}
-       use ypbind dns rpc.idmapd rpc.gssd
-}
-
-start() {
-       if [ -x /usr/sbin/sm-notify ] ; then
-               ebegin "Starting NFS sm-notify"
-               /usr/sbin/sm-notify ${OPTS_SMNOTIFY}
-               eend $?
-       fi
-
-       # Make sure nfs support is loaded in the kernel #64709
-       if [ -e /proc/modules ] && ! grep -qs 'nfs$' /proc/filesystems ; then
-               modprobe -q nfs
-       fi
-
-       ebegin "Mounting NFS filesystems"
-       mount -a -t nfs,nfs4
-       eend $?
-}
-
-stop() {
-       ebegin "Unmounting NFS filesystems"
-       umount -a -t nfs,nfs4
-       eend $?
-}