Update 'SimpleInstall.sh'

This commit is contained in:
Bram Prieshof
2020-09-30 13:28:15 +02:00
parent e1207b1a50
commit b9306c9e7e

View File

@@ -32,8 +32,6 @@ elif [[ "${dist}" == *"ubuntu"* ]] && [[ "${dist_ver}" == *"20.04"* ]]; then
PKGM="$APTMODE" PKGM="$APTMODE"
PKGI="${PKGM} install -y --no-install-recommends" PKGI="${PKGM} install -y --no-install-recommends"
PKGLIST="apt" PKGLIST="apt"
echo "This os in not supported"
exit
shortdist=ubu2004 shortdist=ubu2004
elif [[ "${dist}" == *"debian"* ]] && [[ "${dist_ver}" == *"10"* ]]; then elif [[ "${dist}" == *"debian"* ]] && [[ "${dist_ver}" == *"10"* ]]; then
echo "Debian 10 Detected" echo "Debian 10 Detected"
@@ -41,16 +39,12 @@ elif [[ "${dist}" == *"debian"* ]] && [[ "${dist_ver}" == *"10"* ]]; then
PKGI="${PKGM} install -y --no-install-recommends" PKGI="${PKGM} install -y --no-install-recommends"
PKGLIST="apt" PKGLIST="apt"
shortdist=deb10 shortdist=deb10
echo "This os in not supported"
exit
elif [[ "${dist}" == *"centos"* ]] && [[ "${dist_ver}" == *"8"* ]]; then elif [[ "${dist}" == *"centos"* ]] && [[ "${dist_ver}" == *"8"* ]]; then
echo "Centos 8 Detected" echo "Centos 8 Detected"
PKGM="dnf" PKGM="dnf"
PKGI="${PKGM} install --setopt=install_weak_deps=False --best -y" PKGI="${PKGM} install --setopt=install_weak_deps=False --best -y"
PKGLIST="dnf" PKGLIST="dnf"
shortdist=cent8 shortdist=cent8
echo "This os in not supported"
exit
else else
echo "This os in not supported" echo "This os in not supported"
exit exit
@@ -65,7 +59,6 @@ branch=<branchname>
branchtype=branch branchtype=branch
#SelfBuilding Vars #SelfBuilding Vars
PKGI="${PKGM} install -y"
mtype=""$repo"/raw/"$branchtype"/"$branch"" mtype=""$repo"/raw/"$branchtype"/"$branch""