aboutsummaryrefslogtreecommitdiff
path: root/utils/microsoft_ip_addresses_download.sh
diff options
context:
space:
mode:
Diffstat (limited to 'utils/microsoft_ip_addresses_download.sh')
-rwxr-xr-xutils/microsoft_ip_addresses_download.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/utils/microsoft_ip_addresses_download.sh b/utils/microsoft_ip_addresses_download.sh
index 3148de44f..29a277480 100755
--- a/utils/microsoft_ip_addresses_download.sh
+++ b/utils/microsoft_ip_addresses_download.sh
@@ -12,11 +12,11 @@ LIST=/tmp/ms.list
ORIGIN="https://endpoints.office.com/endpoints/worldwide?clientrequestid=b10c5ed1-bad1-445f-b386-b919946339a7"
-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..."
@@ -45,6 +45,4 @@ jq -r '.[] | select(.serviceArea=="Common") | .ips[]?' < $TMP | grep -v ':' | so
rm -f $TMP $LIST
echo "(3) Microsoft IPs are available in $DEST_OUTLOOK, $DEST_SKYPE_MSTEAMS, $DEST_ONEDRIVE, $DEST_OFFICE365"
-
-
-
+return 0