19 lines
329 B
Bash
19 lines
329 B
Bash
#!/bin/bash
|
|
|
|
declare BASE_URL=https://git.netm.ch/m/os-init/raw/branch/main
|
|
declare UBUNTUVER=0
|
|
|
|
getVer() {
|
|
UBUNTUVER=$(grep "VERSION_ID=" /etc/os-release | sed 's/"//g' | sed 's/.*=//')
|
|
}
|
|
|
|
run() {
|
|
apt update -y
|
|
apt install -y wget
|
|
wget -P /tmp ${BASE_URL}/ubuntu-${UBUNTUVER}/ubuntu-up.sh
|
|
bash /tmp/ubuntu-up
|
|
}
|
|
|
|
getVer
|
|
run
|