This commit is contained in:
Jeffrey Paul 2025-03-29 00:41:10 -07:00
parent 80735fb393
commit cd2127b592

View File

@ -24,7 +24,7 @@ function main () {
fi
if ! grep -qE 'http(s)?://archive\.ubuntu\.com/' /etc/apt/sources.list.d/*; then
echo "Not using default ubuntu repo, script will not function" > /dev/stderr
echo "Not using default ubuntu repo, nothing for us to change. Exiting." > /dev/stderr
exit 1
fi
@ -40,26 +40,21 @@ function main () {
IPINFO="$(curl -s ipinfo.io)"
if [ -z "$IPINFO" ]; then
echo "Failed to get IP info" > /dev/stderr
echo "Failed to geolocate (fetch). Exiting." > /dev/stderr
exit 1
fi
COUNTRYCODE="$(jq .country -r <<< "$IPINFO")"
if [[ -z "$COUNTRYCODE" ]]; then
echo "Failed to get country code" > /dev/stderr
echo "Failed to geolocate (parse). Exiting." > /dev/stderr
exit 1
fi
echo "IP geolocated as country: $COUNTRYCODE" > /dev/stderr
if ! grep -qE 'http(s)?://us\.archive\.ubuntu\.com/' /etc/apt/sources.list.d/*; then
echo "Not using default ubuntu repo, script will not function" > /dev/stderr
exit 1
fi
if [[ "$COUNTRYCODE" == "US" ]]; then
echo "Mirror already set to US, nothing to do" > /dev/stderr
echo "Mirror was already set to US, nothing to do. Exiting." > /dev/stderr
exit 0
fi
@ -72,6 +67,8 @@ function main () {
apt-get update
echo "Finished." > /dev/stderr
exit 0
}