aboutsummaryrefslogtreecommitdiff
path: root/utils/cloudflare_ip_addresses_download.sh
diff options
context:
space:
mode:
authorToni <matzeton@googlemail.com>2022-03-09 13:53:04 +0100
committerGitHub <noreply@github.com>2022-03-09 13:53:04 +0100
commitf646a4bce036edfd26215b5875fe81473dbb175d (patch)
treea416221ab841c6adb443fe01c0f7c2f3dea85fc2 /utils/cloudflare_ip_addresses_download.sh
parent74ae315e36cf206961affa5bd2869c025e4c751f (diff)
Improved ASN/IP update scripts and CI integration. (#1474)
* CI will print a warning if ASN/IP addresses changed. Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils/cloudflare_ip_addresses_download.sh')
-rwxr-xr-xutils/cloudflare_ip_addresses_download.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/utils/cloudflare_ip_addresses_download.sh b/utils/cloudflare_ip_addresses_download.sh
index 8dd1d3176..32f4f3567 100755
--- a/utils/cloudflare_ip_addresses_download.sh
+++ b/utils/cloudflare_ip_addresses_download.sh
@@ -8,11 +8,11 @@ LIST=/tmp/cloudflare.list
ORIGIN="https://www.cloudflare.com/ips-v4"
-echo "(1) Downloading file..."
+echo "(1) Downloading file... ${ORIGIN}"
http_response=$(curl -s -o $LIST -w "%{http_code}" ${ORIGIN})
if [ $http_response != "200" ]; then
echo "Error $http_response: you probably need to update the list url!"
- return
+ return 1
fi
echo "(2) Processing IP addresses..."
@@ -20,6 +20,4 @@ echo "(2) Processing IP addresses..."
rm -f $LIST
echo "(3) Cloudflare IPs are available in $DEST"
-
-
-
+return 0