eeb1c23670
- git snapshot
37 lines
1.5 KiB
Diff
37 lines
1.5 KiB
Diff
From 56d2aed1c82a9ff62a081722f4b9ff9d49a0fe78 Mon Sep 17 00:00:00 2001
|
|
From: Minfei Huang <mhuang@redhat.com>
|
|
Date: Mon, 27 Oct 2014 14:33:11 +0800
|
|
Subject: [PATCH] 40network: Copy the customize dhcp config
|
|
|
|
It is not available to valid the customize dhcp config
|
|
/etc/dhclient.conf in the initram environment.
|
|
|
|
Dracut uses the default follow config to construct the initramfs.
|
|
|
|
request subnet-mask, broadcast-address, time-offset, routers,
|
|
domain-name, domain-name-servers, domain-search, host-name,
|
|
root-path, interface-mtu;
|
|
|
|
Copy the customize config to make the config availably in the
|
|
initram environment.
|
|
|
|
Signed-off-by: Minfei Huang <mhuang@redhat.com>
|
|
---
|
|
modules.d/40network/module-setup.sh | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/modules.d/40network/module-setup.sh b/modules.d/40network/module-setup.sh
|
|
index ae1f43f..55bee4c 100755
|
|
--- a/modules.d/40network/module-setup.sh
|
|
+++ b/modules.d/40network/module-setup.sh
|
|
@@ -79,7 +79,8 @@ install() {
|
|
inst_script "$moddir/netroot.sh" "/sbin/netroot"
|
|
inst_script "$moddir/dhclient-script.sh" "/sbin/dhclient-script"
|
|
inst_simple "$moddir/net-lib.sh" "/lib/net-lib.sh"
|
|
- inst_simple "$moddir/dhclient.conf" "/etc/dhclient.conf"
|
|
+ inst_simple -H "/etc/dhclient.conf"
|
|
+ cat "$moddir/dhclient.conf" >> "${initdir}/etc/dhclient.conf"
|
|
inst_hook pre-udev 50 "$moddir/ifname-genrules.sh"
|
|
inst_hook pre-udev 60 "$moddir/net-genrules.sh"
|
|
inst_hook cmdline 91 "$moddir/dhcp-root.sh"
|