]> git.pld-linux.org Git - packages/nfs-utils.git/blobdiff - nfsfs.init
- obsolete
[packages/nfs-utils.git] / nfsfs.init
index 3b83613ee99c4f0a6941f96ed0290678a41c6750..29e936c78726ee7ca8dc0cd304361881d82edf6d 100644 (file)
@@ -2,15 +2,9 @@
 #
 # nfsfs                Mount NFS filesystems.
 #
-# Version:     @(#) /etc/init.d/skeleton 1.01 26-Oct-1993
-#
-# Author:      Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
-#
-# chkconfig:   345 15 88
+# chkconfig:   345 16 80
 # description: Mounts and unmounts all Network File System (NFS) \
 #              mount points.
-#
-# $Id$
 
 # Source networking configuration.
 if [ ! -f /etc/sysconfig/network ]; then
@@ -23,6 +17,10 @@ fi
 # Get network config
 . /etc/sysconfig/network
 
+# Get service config
+[ -f /etc/sysconfig/nfsfs ] && . /etc/sysconfig/nfsfs
+[ -f /etc/sysconfig/nfslock ] && . /etc/sysconfig/nfslock
+
 # Check that networking is up.
 if is_yes "${NETWORKING}"; then
        if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
@@ -33,26 +31,38 @@ else
        exit 0
 fi
 
+if [ "$1" != "stop" ]; then
+       check_portmapper || { nls "Error: portmap isn't running" && exit 0; }
+fi
 
-# See how we were called.
-case "$1" in
-  start)
+start() {
        if [ ! -f /var/lock/subsys/nfsfs ]; then
-           if [ "$NFSDTYPE" != "U" ] && grep -q nfs4 /proc/filesystems; then
-               if [ ! -f /var/lock/subsys/idmapd ]; then
-                   msg_starting "NFS idmapd"
-                   daemon rpc.cidmapd $RPCIDMAPOPTIONS
+               # Set the ports lockd should listen on
+               if [ -n "$LOCKD_TCPPORT" ]; then
+                       /sbin/sysctl -w fs.nfs.nlm_tcpport=$LOCKD_TCPPORT >/dev/null 2>&1
+               fi
+               if [ -n "$LOCKD_UDPPORT" ]; then
+                       /sbin/sysctl -w fs.nfs.nlm_udpport=$LOCKD_UDPPORT >/dev/null 2>&1
+               fi
+
+               # Special case /usr first
+               if ! awk '{ if ($2 == "/usr" && $3 ~ /^nfs(4$|$)/ && $4 !~ /noauto/) exit 1}' /etc/fstab ; then
+                       run_cmd "Mounting /usr filesystem" mount /usr
+                       # In case of /usr over NFS idmapd, gssd and lockd may not start
+                       # check if they're running and try to start them if not
+                       /sbin/service idmapd status >/dev/null || /sbin/service idmapd start
+                       /sbin/service gssd status >/dev/null || /sbin/service gssd start
+                       /sbin/service nfslock status >/dev/null || /sbin/service nfslock start
                fi
-               msg_starting "NFS gssd"
-               daemon rpc.gssd $RPCGSSOPTIONS
-           fi
-           run_cmd "Mounting NFS filesystems" mount -a -t nfs
-           touch /var/lock/subsys/nfsfs
+               run_cmd "Mounting NFS filesystems" mount -a -t nfs,nfs4
+               touch /var/lock/subsys/nfsfs
+
        else
            msg_already_running "NFSFS"
        fi
-       ;;
-  stop)
+}
+
+stop() {
        if [ -f /proc/mounts ]; then
                fsfile="/proc/mounts"
        else
@@ -62,44 +72,52 @@ case "$1" in
        show "Unmounting NFS filesystems"
        busy
        retry=3
-       remaining=$(awk '$3 == "nfs" {print $2}' $fsfile)
+       remaining=$(awk '$3 ~ /^nfs(4$|$)/ && $2 !~ /^\/(usr$|$)/ {print $2}' $fsfile)
        while [ -n "$remaining" -a $retry -gt 0 ]; do
-               fuser -msk -TERM `awk '$3 == "nfs" {print $2}' < $fsfile`
+               fuser -msk -TERM `awk '$3 ~ /^nfs(4$|$)/ && $2 !~ /^\/(usr$|$)/ {print $2}' < $fsfile`
                sleep 2
-               fuser -msk -KILL `awk '$3 == "nfs" {print $2}' < $fsfile`
-               umount -a -f -t nfs
-               remaining=$(awk '$3 == "nfs" {print $2}' $fsfile)
+               fuser -msk -KILL `awk '$3 ~ /^nfs(4$|$)/ && $2 !~ /^\/(usr$|$)/ {print $2}' < $fsfile`
+               # Sort filesystems to unmount in reverse order
+               rem=""
+               for r in $(awk '$3 ~ /^nfs(4$|$)/ && $2 !~ /^\/(usr$|$)/ {print $2}' $fsfile) ; do
+                       rem="$r $rem"
+               done
+               for fs in $rem ; do
+                       umount $fs
+               done
+               remaining=$(awk '$3 ~ /^nfs(4$|$)/ && $2 !~ /^\/(usr$|$)/ {print $2}' $fsfile)
                retry=$(($retry-1))
        done
        ok
-       if [ "$NFSDTYPE" != "U" ] && grep -q nfs4 /proc/filesystems; then
-           msg_stopping "NFS gssd"
-           killproc rpc.gssd
-           if [ -f /var/lock/subsys/idmapd -a ! -f /var/lock/subsys/nfs ]; then
-               msg_stopping "NFS idmapd"
-               killproc rpc.cidmapd
-           fi
-       fi
        rm -f /var/lock/subsys/nfsfs
+}
+
+# See how we were called.
+case "$1" in
+  start)
+       start
+       ;;
+  stop)
+       stop
        ;;
   status)
        if [ -f /proc/mounts ]; then
                echo "Configured NFS mountpoints:"
                grep -v '^#' /etc/fstab | \
-                 awk '{ if ($3 ~ /^nfs$/ && $4 !~ /noauto/) print $2}'
+                 awk '{ if ($3 ~ /^nfs(4$|$)/ && $4 !~ /noauto/) print $2}'
                echo "Active NFS mountpoints:"
                grep -v '^#' /proc/mounts | \
-                 awk '{ if ($3 ~ /^nfs$/ && $4 !~ /noauto/) print $2}'
+                 awk '{ if ($3 ~ /^nfs(4$|$)/ && $4 !~ /noauto/) print $2}'
        else
                echo "/proc filesystem unavailable"
        fi
        ;;
   restart)
-       $0 stop
-       $0 start
+       stop
+       start
        ;;
   reload|force-reload)
-       mount -a -t nfs
+       mount -a -t nfs,nfs4
        ;;
   *)
        msg_usage "$0 {start|stop|restart|reload|force-reload|status}"
This page took 0.04227 seconds and 4 git commands to generate.