From f646a4bce036edfd26215b5875fe81473dbb175d Mon Sep 17 00:00:00 2001 From: Toni Date: Wed, 9 Mar 2022 13:53:04 +0100 Subject: Improved ASN/IP update scripts and CI integration. (#1474) * CI will print a warning if ASN/IP addresses changed. Signed-off-by: Toni Uhlig --- utils/zoom_ip_addresses_download.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'utils/zoom_ip_addresses_download.sh') 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 -- cgit v1.2.3