diff options
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 |