mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-08-19 03:56:16 +00:00
fix #142: update for ipify's new API
This commit is contained in:
+12
-6
@@ -1,17 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
{
|
||||
set -e
|
||||
function __show_my_ip {
|
||||
set -u
|
||||
set -e
|
||||
|
||||
ipv4=$(curl -s https://api.ipify.org)
|
||||
ipv6=$(curl -s https://api6.ipify.org)
|
||||
ipv4=$(curl -s https://api.ipify.org || true)
|
||||
ipv6=$(curl -s https://api6.ipify.org || true)
|
||||
|
||||
if [ -n "$ipv4" ]; then
|
||||
if [[ -n "${ipv4}" ]]; then
|
||||
echo "IPv4 (A) : $ipv4"
|
||||
fi
|
||||
|
||||
if [ -n "$ipv6" ] && [ "ipv6" != "ipv4" ]; then
|
||||
if [[ -n "$ipv6" ]] && [[ "ipv6" != "ipv4" ]]; then
|
||||
echo "IPv6 (AAAA): $ipv6"
|
||||
fi
|
||||
|
||||
if [[ -z "$ipv4" ]] && [[ -z "ipv6" ]]; then
|
||||
>&2 echo "error: no public IP address"
|
||||
fi
|
||||
}
|
||||
|
||||
__show_my_ip
|
||||
|
||||
Reference in New Issue
Block a user