no debian 11 for now

This commit is contained in:
wh1te909 2021-10-10 21:21:51 +00:00
parent 8d61fcd5c9
commit 58724d95fa
2 changed files with 5 additions and 5 deletions

View File

@ -40,11 +40,11 @@ fi
# determine system # determine system
if ([ "$osname" = "ubuntu" ] && [ "$fullrelno" = "20.04" ]) || ([ "$osname" = "debian" ] && [ $relno -ge 10 ]); then if ([ "$osname" = "ubuntu" ] && [ "$fullrelno" = "20.04" ]) || ([ "$osname" = "debian" ] && [ $relno -eq 10 ]); then
echo $fullrel echo $fullrel
else else
echo $fullrel echo $fullrel
echo -ne "${RED}Only Ubuntu release 20.04 and Debian 10 and later, are supported\n" echo -ne "${RED}Only Ubuntu release 20.04 and Debian 10 are supported\n"
echo -ne "Your system does not appear to be supported${NC}\n" echo -ne "Your system does not appear to be supported${NC}\n"
exit 1 exit 1
fi fi

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
SCRIPT_VERSION="30" SCRIPT_VERSION="31"
SCRIPT_URL='https://raw.githubusercontent.com/wh1te909/tacticalrmm/master/restore.sh' SCRIPT_URL='https://raw.githubusercontent.com/wh1te909/tacticalrmm/master/restore.sh'
sudo apt update sudo apt update
@ -39,11 +39,11 @@ if [ ! "$osname" = "ubuntu" ] && [ ! "$osname" = "debian" ]; then
fi fi
# determine system # determine system
if ([ "$osname" = "ubuntu" ] && [ "$fullrelno" = "20.04" ]) || ([ "$osname" = "debian" ] && [ $relno -ge 10 ]); then if ([ "$osname" = "ubuntu" ] && [ "$fullrelno" = "20.04" ]) || ([ "$osname" = "debian" ] && [ $relno -eq 10 ]); then
echo $fullrel echo $fullrel
else else
echo $fullrel echo $fullrel
echo -ne "${RED}Only Ubuntu release 20.04 and Debian 10 and later, are supported\n" echo -ne "${RED}Only Ubuntu release 20.04 and Debian 10 are supported\n"
echo -ne "Your system does not appear to be supported${NC}\n" echo -ne "Your system does not appear to be supported${NC}\n"
exit 1 exit 1
fi fi