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.
26 lines
1.1 KiB
26 lines
1.1 KiB
6 years ago
|
From d38488e8d561a80b34e532e31c00c0801c104a23 Mon Sep 17 00:00:00 2001
|
||
|
From: Harald Hoyer <harald@redhat.com>
|
||
|
Date: Mon, 12 May 2014 13:53:38 +0200
|
||
|
Subject: [PATCH] ifcfg/write-ifcfg.sh: "IPV6INIT=yes" check also for non-dhcp
|
||
|
|
||
|
(cherry picked from commit 1230f3bcffd8837e8846e60376ea2a88ef5ab257)
|
||
|
---
|
||
|
modules.d/45ifcfg/write-ifcfg.sh | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/modules.d/45ifcfg/write-ifcfg.sh b/modules.d/45ifcfg/write-ifcfg.sh
|
||
|
index 5dc351d5..457a9ac4 100755
|
||
|
--- a/modules.d/45ifcfg/write-ifcfg.sh
|
||
|
+++ b/modules.d/45ifcfg/write-ifcfg.sh
|
||
|
@@ -120,9 +120,9 @@ for netup in /tmp/net.*.did-setup ; do
|
||
|
echo "ONBOOT=yes"
|
||
|
echo "NETBOOT=yes"
|
||
|
echo "UUID=\"$uuid\""
|
||
|
+ strstr "$(ip -6 addr show dev $netif)" 'inet6' && echo "IPV6INIT=yes"
|
||
|
if [ -f /tmp/dhclient.$netif.lease ]; then
|
||
|
[ -f /tmp/dhclient.$netif.dhcpopts ] && . /tmp/dhclient.$netif.dhcpopts
|
||
|
- strstr "$(ip -6 addr show dev $netif)" 'inet6' && echo "IPV6INIT=yes"
|
||
|
if [ -f /tmp/net.$netif.has_ibft_config ]; then
|
||
|
echo "BOOTPROTO=ibft"
|
||
|
else
|