aboutsummaryrefslogtreecommitdiff
path: root/utils/google_cloud_ip_addresses_download.sh
diff options
context:
space:
mode:
Diffstat (limited to 'utils/google_cloud_ip_addresses_download.sh')
-rwxr-xr-xutils/google_cloud_ip_addresses_download.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/google_cloud_ip_addresses_download.sh b/utils/google_cloud_ip_addresses_download.sh
index b14a33af7..97d399e9f 100755
--- a/utils/google_cloud_ip_addresses_download.sh
+++ b/utils/google_cloud_ip_addresses_download.sh
@@ -8,11 +8,11 @@ LIST=/tmp/google_c.list
ORIGIN="https://www.gstatic.com/ipranges/cloud.json"
-echo "(1) Downloading file..."
+echo "(1) Downloading file... ${ORIGIN}"
http_response=$(curl -s -o $TMP -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..."
@@ -21,3 +21,4 @@ jq -r '.prefixes | .[].ipv4Prefix | select( . != null )' $TMP > $LIST # TODO: i
rm -f $TMP $LIST
echo "(3) Google Cloud IPs are available in $DEST"
+return 0