From 2707542a455d333675b210ebbcabdd2791eb79cc Mon Sep 17 00:00:00 2001 From: sneak Date: Sat, 29 Mar 2025 00:27:49 -0700 Subject: [PATCH] make update logic smarter --- updatemirror.sh | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/updatemirror.sh b/updatemirror.sh index bcc1bb2..947b180 100644 --- a/updatemirror.sh +++ b/updatemirror.sh @@ -25,9 +25,28 @@ function main () { find /etc/apt/sources.list.d/ -type f -exec \ 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 - apt update && apt install -y curl jq IPINFO="$(curl -s ipinfo.io)" if [ -z "$IPINFO" ]; then echo "Failed to get IP info" > /dev/stderr @@ -42,7 +61,7 @@ function main () { fi 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 fi