44 lines
1.9 KiB
Diff
44 lines
1.9 KiB
Diff
From 53cece208a44c53ecc001cb8eb769f6fb9b3d1dc Mon Sep 17 00:00:00 2001
|
|
From: Lubomir Rintel <lkundrak@v3.sk>
|
|
Date: Mon, 27 May 2019 11:12:22 +0200
|
|
Subject: [PATCH] network: parse root=dhcp also with network-manager module
|
|
|
|
Move the logic from network-legacy to common network code.
|
|
|
|
(cherry picked from commit 35efada5ecffd139660b4a89f4cc3d627752c91e)
|
|
---
|
|
modules.d/35network-legacy/module-setup.sh | 1 -
|
|
modules.d/{35network-legacy => 40network}/dhcp-root.sh | 0
|
|
modules.d/40network/module-setup.sh | 1 +
|
|
3 files changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/modules.d/35network-legacy/module-setup.sh b/modules.d/35network-legacy/module-setup.sh
|
|
index 71abda36..5a82e998 100755
|
|
--- a/modules.d/35network-legacy/module-setup.sh
|
|
+++ b/modules.d/35network-legacy/module-setup.sh
|
|
@@ -36,7 +36,6 @@ install() {
|
|
inst_simple -H "/etc/dhclient.conf"
|
|
cat "$moddir/dhclient.conf" >> "${initdir}/etc/dhclient.conf"
|
|
inst_hook pre-udev 60 "$moddir/net-genrules.sh"
|
|
- inst_hook cmdline 91 "$moddir/dhcp-root.sh"
|
|
inst_hook cmdline 92 "$moddir/parse-ibft.sh"
|
|
inst_hook cmdline 95 "$moddir/parse-vlan.sh"
|
|
inst_hook cmdline 96 "$moddir/parse-bond.sh"
|
|
diff --git a/modules.d/35network-legacy/dhcp-root.sh b/modules.d/40network/dhcp-root.sh
|
|
similarity index 100%
|
|
rename from modules.d/35network-legacy/dhcp-root.sh
|
|
rename to modules.d/40network/dhcp-root.sh
|
|
diff --git a/modules.d/40network/module-setup.sh b/modules.d/40network/module-setup.sh
|
|
index e8541636..8e2a74a3 100755
|
|
--- a/modules.d/40network/module-setup.sh
|
|
+++ b/modules.d/40network/module-setup.sh
|
|
@@ -28,6 +28,7 @@ install() {
|
|
inst_script "$moddir/netroot.sh" "/sbin/netroot"
|
|
inst_simple "$moddir/net-lib.sh" "/lib/net-lib.sh"
|
|
inst_hook pre-udev 50 "$moddir/ifname-genrules.sh"
|
|
+ inst_hook cmdline 91 "$moddir/dhcp-root.sh"
|
|
|
|
dracut_need_initqueue
|
|
}
|
|
|