diff options
author | Tom Gundersen <teg@jklm.no> | 2010-12-06 00:57:58 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2010-12-06 11:12:58 +0100 |
commit | b4c804d60d6e8361db3f19bf3a2fa6fb58ee8458 (patch) | |
tree | 347bedf0f654d2d9bb40c59de15bec825b706c0d /rc.shutdown | |
parent | 82d5d1b620f1772bd1d992d671a82395911cbaf4 (diff) |
lvm: run vgchange in sysinit mode
This avoids problems with lack of rw filesystems.
Solves: #FS18153.
Diffstat (limited to 'rc.shutdown')
-rwxr-xr-x | rc.shutdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.shutdown b/rc.shutdown index 84003dd..ba4699f 100755 --- a/rc.shutdown +++ b/rc.shutdown @@ -81,7 +81,7 @@ fi if [[ $USELVM =~ yes|YES && -x /sbin/lvm && -d /sys/block ]]; then stat_busy "Deactivating LVM2 groups" - /sbin/lvm vgchange --ignorelockingfailure -an >/dev/null 2>&1 + /sbin/vgchange --sysinit -a n >/dev/null 2>&1 stat_done fi |