fix bug where mirror is changed but metadata isn't refreshed

This commit is contained in:
Jeffrey Paul 2025-03-29 00:37:29 -07:00
parent f2ddbfbb1b
commit 80735fb393

View File

@ -28,14 +28,13 @@ function main () {
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" {} +
apt_update_if_stale
apt install -y jq curl
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
IPINFO="$(curl -s ipinfo.io)"
@ -70,6 +69,9 @@ function main () {
find /etc/apt/sources.list.d/ -type f -exec \
sed -i "s|us\.archive\.ubuntu\.com|$MIRRORHOST|g" {} +
apt-get update
exit 0
}