Unverified Commit e55e3f0f authored by Marc Cornellà's avatar Marc Cornellà Committed by GitHub

fix(systemadmin): handle error for no IPv6 route in `geteip` (#11458)

parent 657ad052
......@@ -140,7 +140,13 @@ function d0() {
# gather external ip address
function geteip() {
curl -s -S -4 https://icanhazip.com
curl -s -S -6 https://icanhazip.com
# handle case when there is no IPv6 external IP, which shows error
# curl: (7) Couldn't connect to server
curl -s -S -6 https://icanhazip.com 2>/dev/null
local ret=$?
(( ret == 7 )) && print -P -u2 "%F{red}error: no IPv6 route to host%f"
return $ret
}
# determine local IP address(es)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment