You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.4 KiB
27 lines
1.4 KiB
From 942d60d8afad4eb8b131a33fe9618e3e8392d33f Mon Sep 17 00:00:00 2001 |
|
From: Harald Hoyer <harald@redhat.com> |
|
Date: Tue, 18 Aug 2015 12:40:01 +0200 |
|
Subject: [PATCH] network/net-lib.sh:ibft unset gateway or dns, if set to |
|
0.0.0.0 |
|
|
|
--- |
|
modules.d/40network/net-lib.sh | 3 +++ |
|
1 file changed, 3 insertions(+) |
|
|
|
diff --git a/modules.d/40network/net-lib.sh b/modules.d/40network/net-lib.sh |
|
index 44c1bf04..c8203567 100755 |
|
--- a/modules.d/40network/net-lib.sh |
|
+++ b/modules.d/40network/net-lib.sh |
|
@@ -236,9 +236,12 @@ ibft_to_cmdline() { |
|
# skip not assigned ip adresses |
|
[ "$ip" = "0.0.0.0" ] && continue |
|
[ -e ${iface}/gateway ] && gw=$(read a < ${iface}/gateway; echo $a) |
|
+ [ "$gateway" = "0.0.0.0" ] && unset $gateway |
|
[ -e ${iface}/subnet-mask ] && mask=$(read a < ${iface}/subnet-mask; echo $a) |
|
[ -e ${iface}/primary-dns ] && dns1=$(read a < ${iface}/primary-dns; echo $a) |
|
+ [ "$dns1" = "0.0.0.0" ] && unset $dns1 |
|
[ -e ${iface}/secondary-dns ] && dns2=$(read a < ${iface}/secondary-dns; echo $a) |
|
+ [ "$dns2" = "0.0.0.0" ] && unset $dns2 |
|
[ -e ${iface}/hostname ] && hostname=$(read a < ${iface}/hostname; echo $a) |
|
if [ -n "$ip" ] && [ -n "$mask" ]; then |
|
echo "ip=$ip::$gw:$mask:$hostname:$dev:none${dns1:+:$dns1}${dns2:+:$dns2}"
|
|
|