make update logic smarter

This commit is contained in:
Jeffrey Paul 2025-03-29 00:27:49 -07:00
parent dbb756c2c6
commit 2707542a45

View File

@ -25,9 +25,28 @@ function main () {
find /etc/apt/sources.list.d/ -type f -exec \ find /etc/apt/sources.list.d/ -type f -exec \
sed -i "s|archive\.ubuntu\.com|us.ubuntu.com|g" {} + sed -i "s|archive\.ubuntu\.com|us.ubuntu.com|g" {} +
UPDATED=0
if ! which jq > /dev/null; then
echo "jq not found, installing..." > /dev/stderr
if [[ "$UPDATED" -eq 0 ]]; then
apt update
UPDATED=1
fi
apt install -y jq
fi
if ! which curl > /dev/null; then
echo "curl not found, installing..." > /dev/stderr
if [ "$UPDATED" -eq 0 ]; then
apt update
UPDATED=1
fi
apt install -y curl
fi
echo "Detecting actual country..." > /dev/stderr echo "Detecting actual country..." > /dev/stderr
apt update && apt install -y curl jq
IPINFO="$(curl -s ipinfo.io)" IPINFO="$(curl -s ipinfo.io)"
if [ -z "$IPINFO" ]; then if [ -z "$IPINFO" ]; then
echo "Failed to get IP info" > /dev/stderr echo "Failed to get IP info" > /dev/stderr
@ -42,7 +61,7 @@ function main () {
fi fi
if [[ "$COUNTRYCODE" == "US" ]]; then if [[ "$COUNTRYCODE" == "US" ]]; then
echo "Mirror already set to US, nothing to do" > /dev/stderr echo "Mirror already set to US, nothing to do" > /dev/stderr
exit 0 exit 0
fi fi