diff options
author | Bill Nottingham <notting@redhat.com> | 2001-08-07 07:04:12 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-08-07 07:04:12 +0000 |
commit | 9e0adb7706d937a19442f4d697f2204750330cff (patch) | |
tree | 47fbe31553101ee3ee129ca31688a7bf1e8df007 /rc.d/init.d/netfs | |
parent | 2daa66fee0b1471dbd2e9c8a97b2776fec892ad5 (diff) | |
download | initscripts-9e0adb7706d937a19442f4d697f2204750330cff.tar initscripts-9e0adb7706d937a19442f4d697f2204750330cff.tar.gz initscripts-9e0adb7706d937a19442f4d697f2204750330cff.tar.bz2 initscripts-9e0adb7706d937a19442f4d697f2204750330cff.tar.xz initscripts-9e0adb7706d937a19442f4d697f2204750330cff.zip |
detach loopback devices at shutdown (#43919, #45826)
Diffstat (limited to 'rc.d/init.d/netfs')
-rwxr-xr-x | rc.d/init.d/netfs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/rc.d/init.d/netfs b/rc.d/init.d/netfs index 4ffed775..4a6a215f 100755 --- a/rc.d/init.d/netfs +++ b/rc.d/init.d/netfs @@ -45,7 +45,7 @@ case "$1" in ;; stop) # Unmount loopback stuff first - remaining=`awk '!/^#/ && $1 ~ /^\/dev\/loop/ && $2 != "/" {print $2}' /proc/mounts` + remaining=`awk '!/^#/ && $1 ~ /^\/dev\/loop/ && $2 != "/" {print $1}' /proc/mounts` [ -n "$remaining" ] && { sig= retry=3 @@ -56,6 +56,10 @@ case "$1" in else action $"Unmounting loopback filesystems: " umount $remaining fi + for dev in $remaining ; do + losetup $dev >/dev/null 2>&1 && \ + action $"Detaching loopback device $dev: " losetup -d $dev + done remaining=`awk '!/^#/ && $1 ~ /^\/dev\/loop/ && $2 != "/" {print $2}' /proc/mounts` [ -z "$remaining" ] && break /sbin/fuser -k -m $sig $remaining >/dev/null |