add webi dat dat dat
[webi-installers/.git] / vps-myip / install.sh
diff --git a/vps-myip/install.sh b/vps-myip/install.sh
deleted file mode 100644 (file)
index aa6980c..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-{
-    set -e
-    set -u
-
-    ipv4=$(curl -s https://api.ipify.org)
-    ipv6=$(curl -s https://api6.ipify.org)
-
-    if [ -n "$ipv4" ]; then
-        echo "IPv4 (A)   : $ipv4"
-    fi
-
-    if [ -n "$ipv6" ] && [ "ipv6" != "ipv4" ]; then
-        echo "IPv6 (AAAA): $ipv6"
-    fi
-}