fix bug where mirror is changed but metadata isn't refreshed
This commit is contained in:
parent
f2ddbfbb1b
commit
80735fb393
@ -28,14 +28,13 @@ function main () {
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
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_update_if_stale
|
||||||
apt install -y jq curl
|
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
|
echo "Detecting actual country..." > /dev/stderr
|
||||||
|
|
||||||
IPINFO="$(curl -s ipinfo.io)"
|
IPINFO="$(curl -s ipinfo.io)"
|
||||||
@ -70,6 +69,9 @@ function main () {
|
|||||||
|
|
||||||
find /etc/apt/sources.list.d/ -type f -exec \
|
find /etc/apt/sources.list.d/ -type f -exec \
|
||||||
sed -i "s|us\.archive\.ubuntu\.com|$MIRRORHOST|g" {} +
|
sed -i "s|us\.archive\.ubuntu\.com|$MIRRORHOST|g" {} +
|
||||||
|
|
||||||
|
apt-get update
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user