Fix boot breakage due to the activationskip check introduced in cfa365a32d47 ("lvm: Don't activate LVs with activationskip set"). In 'man 8 lvs', it is stated that LVs with activationskip set, will have a "k" flag in their lvs attribute listing. The current implementation excludes LVs which do not have the "k" flag set. This leads to the activation of LVs with the activationskip set and the exclusion of LVs with no activationskip set: the check's logic is inverted. Fix this issue by skipping those LVs that have the "k" flag in their attributes. Signed-off-by: Nicolai Stange <nicstange@xxxxxxxxx> --- modules.d/90lvm/lvm_scan.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules.d/90lvm/lvm_scan.sh b/modules.d/90lvm/lvm_scan.sh index ce46e14..ba7d738 100755 --- a/modules.d/90lvm/lvm_scan.sh +++ b/modules.d/90lvm/lvm_scan.sh @@ -106,7 +106,7 @@ if [ -n "$LVS" ] ; then info "Scanning devices $lvmdevs for LVM logical volumes $LVS" lvm lvscan --ignorelockingfailure 2>&1 | vinfo for LV in $LVS; do - if [ "x$(lvm lvs --noheadings --select "lv_attr =~ k" $LV | wc -l)" = "x0" ]; then + if [ "x$(lvm lvs --noheadings --select "lv_attr =~ k" $LV | wc -l)" != "x0" ]; then info "Skipping activation of '$LV' because activationskip is set." continue fi -- 2.4.4 -- To unsubscribe from this list: send the line "unsubscribe initramfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html