latest
This commit is contained in:
parent
947ceab141
commit
dbb756c2c6
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user