Skip to content
Snippets Groups Projects
Commit 88d45d0b authored by Bob Mottram's avatar Bob Mottram
Browse files

Don't display unreachable address

parent d73f5a67
No related branches found
No related tags found
No related merge requests found
......@@ -522,7 +522,9 @@ function show_ip_addresses {
echo -n "IPv4: $(get_ipv4_address)/$(get_external_ipv4_address)"
ipv6_address="$(get_ipv6_address)"
if [ ${#ipv6_address} -gt 0 ]; then
echo " IPv6: ${ipv6_address}"
if [[ "$ipv6_address" != *'unreachable'* ]]; then
echo " IPv6: ${ipv6_address}"
fi
fi
echo ''
echo ''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment