diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-03-04 09:11:38 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-03-08 14:10:57 +0100 |
commit | 34c43cae35d8ee89571c1486a91ef3e37f690617 (patch) | |
tree | 39bacdb1be31a8fb4427fb75beb172e2100d059a /utils/get_routes_by_asn.sh | |
parent | 269be6c7ef038d2de377546813fbb2bacf80e510 (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/get_routes_by_asn.sh')
-rwxr-xr-x | utils/get_routes_by_asn.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/get_routes_by_asn.sh b/utils/get_routes_by_asn.sh index f9292828b..06e320c16 100755 --- a/utils/get_routes_by_asn.sh +++ b/utils/get_routes_by_asn.sh @@ -10,10 +10,14 @@ ORIGIN="https://stat.ripe.net/data/announced-prefixes/data.json?resource=$1" http_response=$(curl -s -o "${LIST}" -w "%{http_code}" "${ORIGIN}") if [ "$http_response" != "200" ]; then + echo "Error $http_response: service temporiarally not available?" >&2 + return 1 +elif [ "$http_response" != "200" ]; then echo "Error $http_response: wrong ASN number/format?" >&2 - return + return 1 fi jq -r '.data.prefixes[].prefix' $LIST | grep -v ":" rm -f $LIST +return 0 |