]> git.pld-linux.org Git - packages/nfs-utils.git/blobdiff - nfsfs.init
- obsolete
[packages/nfs-utils.git] / nfsfs.init
index 53b2b07f10d8c4906e33c8a8ca43afbfbe2fbaaa..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 16 80
 # description: Mounts and unmounts all Network File System (NFS) \
 #              mount points.
-#
-# $Id$
 
 # Source networking configuration.
 if [ ! -f /etc/sysconfig/network ]; then
@@ -37,8 +31,8 @@ else
        exit 0
 fi
 
-if [ -x /sbin/pidof ] && [ "$1" != "stop" ]; then
-       [ -z "`/sbin/pidof portmap`" ] && nls "Error: portmap isn't running" && exit 0
+if [ "$1" != "stop" ]; then
+       check_portmapper || { nls "Error: portmap isn't running" && exit 0; }
 fi
 
 start() {
@@ -78,13 +72,20 @@ stop() {
        show "Unmounting NFS filesystems"
        busy
        retry=3
-       remaining=$(awk '$3 ~ /^nfs(4$|$)/ {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(4$|$)/ {print $2}' < $fsfile`
+               fuser -msk -TERM `awk '$3 ~ /^nfs(4$|$)/ && $2 !~ /^\/(usr$|$)/ {print $2}' < $fsfile`
                sleep 2
-               fuser -msk -KILL `awk '$3 ~ /^nfs(4$|$)/ {print $2}' < $fsfile`
-               umount -a -f -t nfs,nfs4
-               remaining=$(awk '$3 ~ /^nfs(4$|$)/ {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
This page took 0.047128 seconds and 4 git commands to generate.