]> git.ipfire.org Git - thirdparty/dracut-ng.git/commitdiff
ci(azurelinux): disable multipath dracut module
authorJo Zzsi <jozzsicsataban@gmail.com>
Mon, 1 Sep 2025 00:31:47 +0000 (20:31 -0400)
committerLaszlo <laszlo.gombos@gmail.com>
Sat, 6 Sep 2025 09:45:01 +0000 (05:45 -0400)
Multipath dracut module interferes with FULL-SYSTEMD test on
azurelinux.

Instead of disabling the test, let's instead omit the multipath dracut
module.

This commit improves the workaround for
https://github.com/dracut-ng/dracut-ng/issues/1315 .

test/container/Dockerfile-azurelinux

index 3298b8ed3950d3033fe2f45f73462ab33dea392e..c9cac773850f9c6f943c45d187e3bbd1535b867f 100644 (file)
@@ -56,5 +56,7 @@ RUN tdnf -y install --setopt=install_weak_deps=False \
     && tdnf clean all
 
 # disable systemd-portabled - it is optional and allows to pass the CI
+# disable multipath dracut module - it interferes with the CI on azurelinux
 RUN \
-    rm -rf /usr/bin/portablectl /usr/lib/systemd/systemd-portabled
+    rm -rf /usr/bin/portablectl /usr/lib/systemd/systemd-portabled ;\
+    echo 'omit_dracutmodules+=" multipath "' > /usr/lib/dracut/dracut.conf.d/02-dist.conf