From 947ceab14162711e8399feb9e737f1e3dccdea79 Mon Sep 17 00:00:00 2001 From: sneak Date: Sat, 29 Mar 2025 00:20:57 -0700 Subject: [PATCH] don't use lsb_release, output information --- updatemirror.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/updatemirror.sh b/updatemirror.sh index 99200f1..9446955 100644 --- a/updatemirror.sh +++ b/updatemirror.sh @@ -4,7 +4,7 @@ set -euo pipefail function main () { # check for ubuntu only - if ! $(lsb_release -a | grep -q "Ubuntu"); then + if ! grep -qi '^ID=ubuntu' /etc/os-release; then echo "only for ubuntu" > /dev/stderr exit 1 fi @@ -31,9 +31,9 @@ function main () { MIRRORHOST="$(echo "$COUNTRYCODE" | tr 'A-Z' 'a-z').archive.ubuntu.com" + echo "IP geolocated as $COUNTRYCODE, pdating mirror to $MIRRORHOST." find /etc/apt/sources.list.d/ -type f -exec \ sed -i "s|archive\.ubuntu\.com|$MIRRORHOST|g" {} + - } main