23 lines
852 B
Diff
23 lines
852 B
Diff
From 13264563a9471844102113b7062534466d20ce38 Mon Sep 17 00:00:00 2001
|
|
From: Harald Hoyer <harald@redhat.com>
|
|
Date: Thu, 30 Jun 2016 12:15:56 +0200
|
|
Subject: [PATCH] network:wait_for_ipv6_auto() wait for all tentative addresses
|
|
|
|
---
|
|
modules.d/40network/net-lib.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/modules.d/40network/net-lib.sh b/modules.d/40network/net-lib.sh
|
|
index 986c673c..71201938 100755
|
|
--- a/modules.d/40network/net-lib.sh
|
|
+++ b/modules.d/40network/net-lib.sh
|
|
@@ -677,7 +677,7 @@ wait_for_ipv6_auto() {
|
|
timeout=$(($timeout*10))
|
|
|
|
while [ $cnt -lt $timeout ]; do
|
|
- [ -z "$(ip -6 addr show dev "$1" scope global tentative)" ] \
|
|
+ [ -z "$(ip -6 addr show dev "$1" tentative)" ] \
|
|
&& [ -n "$(ip -6 route list proto ra dev "$1")" ] \
|
|
&& return 0
|
|
sleep 0.1
|