diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/iproute2.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/iproute2.sh b/net/iproute2.sh index 2d92d8fd..9901aae5 100644 --- a/net/iproute2.sh +++ b/net/iproute2.sh @@ -208,6 +208,8 @@ iproute2_pre_start() _iproute2_ipv6_tentative() { + # Only check tentative when we have a carrier. + LC_ALL=C ip link show dev "${IFACE}" | grep -q "NO-CARRIER" && return 1 LC_ALL=C ip addr show dev "${IFACE}" | \ grep -q "^[[:space:]]*inet6 .* tentative" } |