From 482cb8d334a5aa4242816d5ab973555cfb46bc96 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Mon, 4 Jul 2022 18:18:48 +0200 Subject: [PATCH] GRMLBASE/50-lvm: also clear /lib/udev/rules.d/69-lvm.rules We don't want automatic lvm_scan, new udev upstream release 2.03.15 includes a new file /lib/udev/rules.d/69-lvm.rules, so let's check for presence of /lib/udev/rules.d/69-lvm.rules and /lib/udev/rules.d/69-lvm-metad.rules and clear any possibly existing files then. Related to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1014314 --- etc/grml/fai/config/scripts/GRMLBASE/50-lvm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/etc/grml/fai/config/scripts/GRMLBASE/50-lvm b/etc/grml/fai/config/scripts/GRMLBASE/50-lvm index 9ec8199..1f65279 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/50-lvm +++ b/etc/grml/fai/config/scripts/GRMLBASE/50-lvm @@ -9,8 +9,15 @@ set -u set -e -echo "Clearing /lib/udev/rules.d/69-lvm-metad.rules to avoid automatic LVM scanning" -echo '# this file was generated by grml-live script GRMLBASE/50-lvm' > "${target}/lib/udev/rules.d/69-lvm-metad.rules" +if [ -f "${target}/lib/udev/rules.d/69-lvm.rules" ] ; then # lvm2 >=2.03.15 + echo "Clearing /lib/udev/rules.d/69-lvm.rules to avoid automatic LVM scanning" + echo '# this file was generated by grml-live script GRMLBASE/50-lvm' > "${target}/lib/udev/rules.d/69-lvm.rules" +fi + +if [ -f "${target}/lib/udev/rules.d/69-lvm-metad.rules" ] ; then # lvm2 <= 2.03.11 + echo "Clearing /lib/udev/rules.d/69-lvm-metad.rules to avoid automatic LVM scanning" + echo '# this file was generated by grml-live script GRMLBASE/50-lvm' > "${target}/lib/udev/rules.d/69-lvm-metad.rules" +fi ## END OF FILE ################################################################# # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2 -- 2.1.4