28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
From 744c6de5cde38d012f93bc53f9076bf9c37b8b72 Mon Sep 17 00:00:00 2001
|
|
From: Antonio Alvarez Feijoo <antonio.feijoo@suse.com>
|
|
Date: Mon, 11 Jul 2022 13:08:57 +0200
|
|
Subject: [PATCH] fix(network-manager): correct wrong local network
|
|
configuration path
|
|
|
|
Reference:https://github.com/dracutdevs/dracut/commit/744c6de5cde38d012f93bc53f9076bf9c37b8b72
|
|
Conflict:NA
|
|
---
|
|
modules.d/35network-manager/module-setup.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/modules.d/35network-manager/module-setup.sh b/modules.d/35network-manager/module-setup.sh
|
|
index 04898a39..8299a0fd 100755
|
|
--- a/modules.d/35network-manager/module-setup.sh
|
|
+++ b/modules.d/35network-manager/module-setup.sh
|
|
@@ -53,7 +53,7 @@ install() {
|
|
|
|
# Adding default link
|
|
inst_multiple -o "${systemdutildir}/network/99-default.link"
|
|
- [[ $hostonly ]] && inst_multiple -H -o "${systemdsystemconfdir}/network/*.link"
|
|
+ [[ $hostonly ]] && inst_multiple -H -o "${systemdnetworkconfdir}/*.link"
|
|
|
|
$SYSTEMCTL -q --root "$initdir" enable nm-initrd.service
|
|
fi
|
|
--
|
|
2.23.0
|