This commit is contained in:
Jeffrey Paul 2025-03-29 00:25:42 -07:00
parent 947ceab141
commit dbb756c2c6

View File

@ -15,6 +15,18 @@ function main () {
exit 1
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
exit 1
fi
echo "Changing mirror country to US as a first approximation..." > /dev/stderr
find /etc/apt/sources.list.d/ -type f -exec \
sed -i "s|archive\.ubuntu\.com|us.ubuntu.com|g" {} +
echo "Detecting actual country..." > /dev/stderr
apt update && apt install -y curl jq
IPINFO="$(curl -s ipinfo.io)"
if [ -z "$IPINFO" ]; then
@ -22,18 +34,25 @@ function main () {
exit 1
fi
COUNTRYCODE="$(jq .country -r <<< "$IPINFO")"
echo "Country code: $COUNTRYCODE"
echo "IP geolocated as country: $COUNTRYCODE" > /dev/stderr
if ! grep -qE 'http(s)?://archive\.ubuntu\.com/' /etc/apt/sources.list.d/*; then
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
exit 0
fi
MIRRORHOST="$(echo "$COUNTRYCODE" | tr 'A-Z' 'a-z').archive.ubuntu.com"
echo "IP geolocated as $COUNTRYCODE, pdating mirror to $MIRRORHOST."
echo "Changing mirror country to $COUNTRYCODE..." > /dev/stderr
find /etc/apt/sources.list.d/ -type f -exec \
sed -i "s|archive\.ubuntu\.com|$MIRRORHOST|g" {} +
sed -i "s|us\.archive\.ubuntu\.com|$MIRRORHOST|g" {} +
exit 0
}
main