29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From 2eb733cc11c09358b79e2c73218953f5bb64da93 Mon Sep 17 00:00:00 2001
|
|
From: Antonio Alvarez Feijoo <antonio.feijoo@suse.com>
|
|
Date: Mon, 11 Jul 2022 13:08:40 +0200
|
|
Subject: [PATCH] fix(network-legacy): correct wrong local network
|
|
configuration path
|
|
|
|
|
|
Reference:https://github.com/dracutdevs/dracut/commit/2eb733cc11c09358b79e2c73218953f5bb64da93
|
|
Conflict:NA
|
|
---
|
|
modules.d/35network-legacy/module-setup.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/modules.d/35network-legacy/module-setup.sh b/modules.d/35network-legacy/module-setup.sh
|
|
index 84dcf7f5..a3d6e677 100755
|
|
--- a/modules.d/35network-legacy/module-setup.sh
|
|
+++ b/modules.d/35network-legacy/module-setup.sh
|
|
@@ -25,7 +25,7 @@ install() {
|
|
#Adding default link
|
|
if dracut_module_included "systemd"; then
|
|
inst_multiple -o "${systemdutildir}/network/99-default.link"
|
|
- [[ $hostonly ]] && inst_multiple -H -o "${systemdsystemconfdir}/network/*.link"
|
|
+ [[ $hostonly ]] && inst_multiple -H -o "${systemdnetworkconfdir}/*.link"
|
|
fi
|
|
|
|
inst_multiple ip dhclient sed awk grep pgrep tr expr
|
|
--
|
|
2.23.0
|