diff options
author | Toni <matzeton@googlemail.com> | 2022-03-09 13:53:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-09 13:53:04 +0100 |
commit | f646a4bce036edfd26215b5875fe81473dbb175d (patch) | |
tree | a416221ab841c6adb443fe01c0f7c2f3dea85fc2 /utils/get_routes_by_asn.sh | |
parent | 74ae315e36cf206961affa5bd2869c025e4c751f (diff) |
Improved ASN/IP update scripts and CI integration. (#1474)
* CI will print a warning 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 |