From df91f291f94de46bef6f0f373038d289225ae34a Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 30 Jan 2025 16:12:18 -0800 Subject: [PATCH] dracut: depend on net-lib not ifcfg ifcfg is gone in dracut-ng 204. Looking at the module and its history, I'm pretty sure we don't actually use anything from the ifcfg module any more. anaconda-ifcfg.sh only uses save_netinfo, which is in net-lib. So let's turn the ifcfg dep into a net-lib dep instead. If I missed anything and we really are still relying on the ifcfg module then we need to fix that, since it's gone now. Resolves: rhbz#2343125 --- dracut/module-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dracut/module-setup.sh b/dracut/module-setup.sh index fff1288254a0..ff8a37ba7f46 100755 --- a/dracut/module-setup.sh +++ b/dracut/module-setup.sh @@ -8,7 +8,7 @@ check() { } depends() { - echo livenet nfs img-lib convertfs ifcfg + echo livenet nfs img-lib convertfs net-lib case "$(uname -m)" in s390*) echo cms ;; esac