Blame SOURCES/0309-network-net-lib.sh-ibft-unset-gateway-or-dns-if-set-.patch

18971c
From 942d60d8afad4eb8b131a33fe9618e3e8392d33f Mon Sep 17 00:00:00 2001
18971c
From: Harald Hoyer <harald@redhat.com>
18971c
Date: Tue, 18 Aug 2015 12:40:01 +0200
18971c
Subject: [PATCH] network/net-lib.sh:ibft unset gateway or dns, if set to
18971c
 0.0.0.0
18971c
18971c
---
18971c
 modules.d/40network/net-lib.sh | 3 +++
18971c
 1 file changed, 3 insertions(+)
18971c
18971c
diff --git a/modules.d/40network/net-lib.sh b/modules.d/40network/net-lib.sh
18971c
index 44c1bf04..c8203567 100755
18971c
--- a/modules.d/40network/net-lib.sh
18971c
+++ b/modules.d/40network/net-lib.sh
18971c
@@ -236,9 +236,12 @@ ibft_to_cmdline() {
18971c
                 # skip not assigned ip adresses
18971c
                 [ "$ip" = "0.0.0.0" ] && continue
18971c
                 [ -e ${iface}/gateway ] && gw=$(read a < ${iface}/gateway; echo $a)
18971c
+                [ "$gateway" = "0.0.0.0" ] && unset $gateway
18971c
                 [ -e ${iface}/subnet-mask ] && mask=$(read a < ${iface}/subnet-mask; echo $a)
18971c
                 [ -e ${iface}/primary-dns ] && dns1=$(read a < ${iface}/primary-dns; echo $a)
18971c
+                [ "$dns1" = "0.0.0.0" ] && unset $dns1
18971c
                 [ -e ${iface}/secondary-dns ] && dns2=$(read a < ${iface}/secondary-dns; echo $a)
18971c
+                [ "$dns2" = "0.0.0.0" ] && unset $dns2
18971c
                 [ -e ${iface}/hostname ] && hostname=$(read a < ${iface}/hostname; echo $a)
18971c
                 if [ -n "$ip" ] && [ -n "$mask" ]; then
18971c
                     echo "ip=$ip::$gw:$mask:$hostname:$dev:none${dns1:+:$dns1}${dns2:+:$dns2}"