aboutsummaryrefslogtreecommitdiff
path: root/rc.shutdown
diff options
context:
space:
mode:
authorJudd Vinet <judd@archlinux.org>2004-02-29 23:09:37 +0000
committerJudd Vinet <judd@archlinux.org>2004-02-29 23:09:37 +0000
commitabbe7921517e87dcf3fa61036d26d72bc714257a (patch)
treeb8630b13b7bc3f15afa0d1fc8428431393aafad6 /rc.shutdown
parent0d76f45bffddced00c83b0c06f1be796a780366b (diff)
downloadinitscripts-abbe7921517e87dcf3fa61036d26d72bc714257a.tar.xz
added --ignorelockingfailure during startup vgchange (LVM2)0.6
Diffstat (limited to 'rc.shutdown')
-rwxr-xr-xrc.shutdown19
1 files changed, 8 insertions, 11 deletions
diff --git a/rc.shutdown b/rc.shutdown
index 538eb96..630f09b 100755
--- a/rc.shutdown
+++ b/rc.shutdown
@@ -64,17 +64,14 @@ stat_busy "Unmounting Filesystems"
/bin/umount -a
stat_done
-if [ -f /etc/lvmtab ]; then
- if [ -x /sbin/lvm ]; then
- stat_busy "Deactivating LVM2 groups"
- /sbin/lvm vgchange --ignorelockingfailure -a n
- stat_done
- elif [ -x /sbin/vgchange ]; then
- stat_busy "Deactivating LVM1 groups"
- /sbin/vgchange -a n
- stat_done
- fi
- umount /proc
+if [ -f /etc/lvmtab -a -x /sbin/vgchange ]; then
+ stat_busy "Deactivating LVM1 groups"
+ /sbin/vgchange -a n
+ stat_done
+elif [ -d /etc/lvm -a -x /sbin/lvm ]; then
+ stat_busy "Deactivating LVM2 groups"
+ /sbin/lvm vgchange --ignorelockingfailure -a n
+ stat_done
fi
stat_busy "Remounting Root Filesystem Read-only"