10 lines
189 B
Bash
10 lines
189 B
Bash
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
rm -f /usr/local/bin/runup
|
|
rm -Rf /opt/ubuntu-upscripts
|
|
|
|
bash <(curl -sL https://git.schroedercity.com/voltron/LinUPx/raw/master/upscripts-install.sh)
|