if ubuntu, force 20.04

This commit is contained in:
wh1te909 2020-12-19 07:45:21 +00:00
parent 5ae50e242c
commit 3315c7045f
1 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
SCRIPT_VERSION="27" SCRIPT_VERSION="28"
SCRIPT_URL='https://raw.githubusercontent.com/wh1te909/tacticalrmm/master/install.sh' SCRIPT_URL='https://raw.githubusercontent.com/wh1te909/tacticalrmm/master/install.sh'
GREEN='\033[0;32m' GREEN='\033[0;32m'
@ -38,17 +38,17 @@ fi
# determine system # determine system
if ([ "$osname" = "ubuntu" ] && [ $relno -ge 20 ]) || ([ "$osname" = "debian" ] && [ $relno -ge 10 ]); then if ([ "$osname" = "ubuntu" ] && [ "$fullrelno" = "20.04" ]) || ([ "$osname" = "debian" ] && [ $relno -ge 10 ]); then
echo $fullrel echo $fullrel
else else
echo $fullrel echo $fullrel
echo "Only Ubuntu release 20.04 and later and Debian 10 and later, are supported" echo -ne "${RED}Only Ubuntu release 20.04 and Debian 10 and later, are supported\n"
echo "Your system does not appear to be supported" echo -ne "Your system does not appear to be supported${NC}\n"
exit exit 1
fi fi
if [ $EUID -eq 0 ]; then if [ $EUID -eq 0 ]; then
echo -ne "\033[0;31mDo NOT run this script as root. Exiting.\e[0m\n" echo -ne "${RED}Do NOT run this script as root. Exiting.${NC}\n"
exit 1 exit 1
fi fi