From 80735fb393f0feb1ca284452c510556f116926cf Mon Sep 17 00:00:00 2001 From: sneak Date: Sat, 29 Mar 2025 00:37:29 -0700 Subject: [PATCH] fix bug where mirror is changed but metadata isn't refreshed --- updatemirror.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/updatemirror.sh b/updatemirror.sh index c3e38a5..fbf64e4 100644 --- a/updatemirror.sh +++ b/updatemirror.sh @@ -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 }