From 34c43cae35d8ee89571c1486a91ef3e37f690617 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Fri, 4 Mar 2022 09:11:38 +0100 Subject: Improved ASN/IP update scripts and CI integration. * CI will fail if ASN/IP addresses changed. Signed-off-by: Toni Uhlig --- utils/ethereum_ip_addresses_download.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'utils/ethereum_ip_addresses_download.sh') diff --git a/utils/ethereum_ip_addresses_download.sh b/utils/ethereum_ip_addresses_download.sh index b01c92400..3497a943f 100755 --- a/utils/ethereum_ip_addresses_download.sh +++ b/utils/ethereum_ip_addresses_download.sh @@ -8,11 +8,11 @@ LIST=/tmp/ethereum.list ORIGIN="https://raw.githubusercontent.com/ethereum/go-ethereum/master/params/bootnodes.go" -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..." @@ -22,6 +22,4 @@ grep 'enode' $TMP | grep -v '^/' | grep ':' | cut -d '@' -f 2 | cut -d ':' -f 1 rm -f $TMP $LIST echo "(3) Ethereum/Mining IPs are available in $DEST" - - - +return 0 -- cgit v1.2.3