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.
23 lines
971 B
23 lines
971 B
6 years ago
|
From a4c47ce0ddc7f7b46c2395709cf83f731f90685b Mon Sep 17 00:00:00 2001
|
||
|
From: Harald Hoyer <harald@redhat.com>
|
||
|
Date: Tue, 1 Sep 2015 17:25:34 +0200
|
||
|
Subject: [PATCH] network/net-lib.sh: fix IPv6 route parsing
|
||
|
|
||
|
---
|
||
|
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 6034a091..9d22ec1c 100755
|
||
|
--- a/modules.d/40network/net-lib.sh
|
||
|
+++ b/modules.d/40network/net-lib.sh
|
||
|
@@ -121,7 +121,7 @@ setup_net() {
|
||
|
route_to_var "$_p" || continue
|
||
|
[ -n "$route_dev" ] && [ "$route_dev" != "$netif" ] && continue
|
||
|
ip route add "$route_mask" ${route_gw:+via "$route_gw"} ${route_dev:+dev "$route_dev"}
|
||
|
- if strstr ":" "$route_mask"; then
|
||
|
+ if strstr "$route_mask" ":"; then
|
||
|
printf -- "%s\n" "$route_mask ${route_gw:+via $route_gw} ${route_dev:+dev $route_dev}" \
|
||
|
> /tmp/net.route6."$netif"
|
||
|
else
|