diff options
author | Dave Reisner <d@falconindy.com> | 2011-06-19 13:15:57 -0400 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2011-06-19 13:15:57 -0400 |
commit | cc514f32d04194198e42a63d24ce2e5e9b3df031 (patch) | |
tree | 4af47e697f61256daa0b33a5599416d8a7791b53 /rc.shutdown | |
parent | 824567cb23ed0bab4ed4568be139ee0c75d7598d (diff) |
rc.shutdown: continuation of fe48fab2c2c35c
Signed-off-by: Dave Reisner <d@falconindy.com>
Diffstat (limited to 'rc.shutdown')
-rwxr-xr-x | rc.shutdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rc.shutdown b/rc.shutdown index a040bbe..fc12958 100755 --- a/rc.shutdown +++ b/rc.shutdown @@ -47,7 +47,7 @@ halt -w status "Deactivating Swap" swapoff -a # stop monitoring of lvm2 groups before unmounting filesystems -if [[ $USELVM =~ yes|YES && -x $(type -P lvm) && -d /sys/block ]]; then +if [[ $USELVM = [Yy][Ee][Ss] && -x $(type -P lvm) && -d /sys/block ]]; then status "Deactivating monitoring of LVM2 groups" \ vgchange --monitor n >/dev/null 2>&1 fi @@ -66,7 +66,7 @@ if [[ -f /etc/crypttab && -n $CS ]] && grep -q ^[^#] /etc/crypttab; then stat_busy "Deactivating encrypted volumes:" # Maybe someone has LVM on an encrypted block device # executing an extra vgchange is errorless - if [[ $USELVM =~ yes|YES ]]; then + if [[ $USELVM = [Yy][Ee][Ss] ]]; then vgchange --sysinit -a n >/dev/null 2>&1 fi do_lock() { @@ -81,7 +81,7 @@ if [[ -f /etc/crypttab && -n $CS ]] && grep -q ^[^#] /etc/crypttab; then stat_done fi -if [[ $USELVM =~ yes|YES && -x $(type -P lvm) && -d /sys/block ]]; then +if [[ $USELVM = [Yy][Ee][Ss] && -x $(type -P lvm) && -d /sys/block ]]; then status "Deactivating LVM2 groups" vgchange --sysinit -a n >/dev/null 2>&1 fi |