aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/init.d/netfs
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2001-02-13 18:47:29 +0000
committerBill Nottingham <notting@redhat.com>2001-02-13 18:47:29 +0000
commit2f00a9ad2814616d67c644a56c62543fc978956d (patch)
tree829520383110d5b585b92d6d95ee35f93ce2bfa1 /rc.d/init.d/netfs
parentf31283a24485e93ddebbabe3f30725a565f85e81 (diff)
downloadinitscripts-2f00a9ad2814616d67c644a56c62543fc978956d.tar
initscripts-2f00a9ad2814616d67c644a56c62543fc978956d.tar.gz
initscripts-2f00a9ad2814616d67c644a56c62543fc978956d.tar.bz2
initscripts-2f00a9ad2814616d67c644a56c62543fc978956d.tar.xz
initscripts-2f00a9ad2814616d67c644a56c62543fc978956d.zip
unmount loopback stuff before stopping netfs or shutting down
Diffstat (limited to 'rc.d/init.d/netfs')
-rwxr-xr-xrc.d/init.d/netfs20
1 files changed, 20 insertions, 0 deletions
diff --git a/rc.d/init.d/netfs b/rc.d/init.d/netfs
index 82e2547e..753937f3 100755
--- a/rc.d/init.d/netfs
+++ b/rc.d/init.d/netfs
@@ -43,6 +43,26 @@ case "$1" in
action $"Mounting other filesystems: " mount -a -t nonfs,smbfs,ncpfs
;;
stop)
+ # Unmount loopback stuff first
+ remaining=`awk '!/^#/ && $1 ~ /^\/dev\/loop/ && $2 != "/" {print $2}' /proc/mounts`
+ [ -n "$remaining" ] && {
+ sig=
+ retry=3
+ while [ -n "$remaining" -a "$retry" -gt 0 ]
+ do
+ if [ "$retry" -lt 3 ]; then
+ action $"Unmounting loopback filesystems (retry):" umount $remaining
+ else
+ action $"Unmounting loobpack filesystems: " umount $remaining
+ fi
+ remaining=`awk '!/^#/ && $1 ~ /^\/dev\/loop/ && $2 != "/" {print $2}' /proc/mounts`
+ [ -z "$remaining" && break
+ /sbin/fuser -k -m $sig $remaining >/dev/null
+ sleep 5
+ retry=$(($retry -1))
+ sig=-9
+ done
+ }
[ -n "$NFSMTAB" ] && {
sig=
retry=3