aboutsummaryrefslogtreecommitdiff
path: root/utils/zoom_ip_addresses_download.sh
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2022-03-04 09:11:38 +0100
committerToni Uhlig <matzeton@googlemail.com>2022-03-08 14:10:57 +0100
commit34c43cae35d8ee89571c1486a91ef3e37f690617 (patch)
tree39bacdb1be31a8fb4427fb75beb172e2100d059a /utils/zoom_ip_addresses_download.sh
parent269be6c7ef038d2de377546813fbb2bacf80e510 (diff)
Improved ASN/IP update scripts and CI integration.improved/ci-test-update-scripts
* CI will fail if ASN/IP addresses changed. Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils/zoom_ip_addresses_download.sh')
-rwxr-xr-xutils/zoom_ip_addresses_download.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/utils/zoom_ip_addresses_download.sh b/utils/zoom_ip_addresses_download.sh
index b2f04e7fe..3256b5459 100755
--- a/utils/zoom_ip_addresses_download.sh
+++ b/utils/zoom_ip_addresses_download.sh
@@ -9,11 +9,11 @@ LIST=/tmp/zoom.list
ORIGIN="https://assets.zoom.us/docs/ipranges/Zoom.txt"
-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..."
@@ -21,6 +21,4 @@ echo "(2) Processing IP addresses..."
rm -f $LIST
echo "(3) ZOOM IPs are available in $DEST"
-
-
-
+return 0