don't use lsb_release, output information
This commit is contained in:
parent
3f5d8f06d0
commit
947ceab141
@ -4,7 +4,7 @@ set -euo pipefail
|
|||||||
|
|
||||||
function main () {
|
function main () {
|
||||||
# check for ubuntu only
|
# 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
|
echo "only for ubuntu" > /dev/stderr
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
@ -31,9 +31,9 @@ function main () {
|
|||||||
|
|
||||||
MIRRORHOST="$(echo "$COUNTRYCODE" | tr 'A-Z' 'a-z').archive.ubuntu.com"
|
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 \
|
find /etc/apt/sources.list.d/ -type f -exec \
|
||||||
sed -i "s|archive\.ubuntu\.com|$MIRRORHOST|g" {} +
|
sed -i "s|archive\.ubuntu\.com|$MIRRORHOST|g" {} +
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main
|
main
|
||||||
|
Loading…
Reference in New Issue
Block a user