From: Mike Snitzer Date: Wed, 10 Mar 2010 19:24:18 +0000 (-0500) Subject: lvm_scan: use '--ignoremonitoring' rather than '--monitor n' X-Git-Tag: 005~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f6458b80eff262d1fc6751d3864d72d15e3fadb3;p=thirdparty%2Fdracut.git lvm_scan: use '--ignoremonitoring' rather than '--monitor n' lvchange and vgchange '--monitor n' will not prevent lvm from attempting to dlopen the libdevmapper-event library. dracut git commit 47ab3b6c5e introduced the use of '--monitor n' but '--ignoremonitoring' is needed now that the libdevmapper-event library isn't copied into the initramfs (ever since 0fae59d6eb3) Signed-off-by: Mike Snitzer --- diff --git a/modules.d/90lvm/lvm_scan.sh b/modules.d/90lvm/lvm_scan.sh index 85cd78e49..f4f7b4a8e 100755 --- a/modules.d/90lvm/lvm_scan.sh +++ b/modules.d/90lvm/lvm_scan.sh @@ -60,13 +60,13 @@ nopoll=$( if [ -n "$LVS" ] ; then info "Scanning devices $lvmdevs for LVM logical volumes $LVS" lvm lvscan --ignorelockingfailure 2>&1 | vinfo - lvm lvchange -ay --ignorelockingfailure $nopoll --monitor n $LVS 2>&1 | vinfo + lvm lvchange -ay --ignorelockingfailure $nopoll --ignoremonitoring $LVS 2>&1 | vinfo fi if [ -z "$LVS" -o -n "$VGS" ]; then info "Scanning devices $lvmdevs for LVM volume groups $VGS" lvm vgscan --ignorelockingfailure 2>&1 | vinfo - lvm vgchange -ay --ignorelockingfailure $nopoll --monitor n $VGS 2>&1 | vinfo + lvm vgchange -ay --ignorelockingfailure $nopoll --ignoremonitoring $VGS 2>&1 | vinfo fi if [ "$lvmwritten" ]; then