void-packages/srcpkgs/dracut/patches/d4b93a092db11.patch
Juan RP 673ce1e962 dracut: merge d4b93a092db from upstream git.
This removes the logic to skip activation of LVs with the activationskip
'k' flag which is unnecessary with recent lvm2 versions.

Remove the other patches because they were obsolete and wrong, thanks
to al3hex for the notice.
2015-09-02 08:12:45 +02:00

28 lines
1.2 KiB
Diff

commit d4b93a092db1105a29a3f768d1d49ece8b90547a
Author: Fabian Deutsch <fabiand@fedoraproject.org>
Date: Thu Jun 25 11:17:59 2015 +0200
Revert "lvm: Don't activate LVs with activationskip set"
This reverts commit cfa365a32d47388c8476064b23d7d4684f1e591b.
The logic in commit cfa365a was added to prevent (odl) lvms from
activating snapshots which should not be activated.
Newer lvms however do this automatically (not enabling an LV if the
the 'k' attribute set), thus we can revert the previous commit.
diff --git a/modules.d/90lvm/lvm_scan.sh b/modules.d/90lvm/lvm_scan.sh
index ce46e14..7495644 100755
--- modules.d/90lvm/lvm_scan.sh
+++ modules.d/90lvm/lvm_scan.sh
@@ -106,10 +106,6 @@ 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
- info "Skipping activation of '$LV' because activationskip is set."
- continue
- fi
if [ -z "$sysinit" ]; then
lvm lvchange --yes -ay --ignorelockingfailure $nopoll --ignoremonitoring $LV 2>&1 | vinfo
else