diff --git a/MySQL-ModInst.sh b/MySQL-ModInst.sh index c58373d..70ad550 100644 --- a/MySQL-ModInst.sh +++ b/MySQL-ModInst.sh @@ -15,6 +15,7 @@ phpmyadminver="5.0.2" SMI_config=no #Enforcing Legacy Mode +APTMODE="apt" OUTPUT='/dev/tty' IMODE=l @@ -37,8 +38,6 @@ elif [[ "${dist}" == *"ubuntu"* ]] && [[ "${dist_ver}" == *"20.04"* ]]; then PKGM="$APTMODE" PKGI="${PKGM} install -y --no-install-recommends" PKGLIST="apt.pkg.list" - echo "This os in not supported" - exit shortdist=ubu2004 elif [[ "${dist}" == *"debian"* ]] && [[ "${dist_ver}" == *"10"* ]]; then echo "Debian 10 Detected" @@ -46,19 +45,15 @@ elif [[ "${dist}" == *"debian"* ]] && [[ "${dist_ver}" == *"10"* ]]; then PKGI="${PKGM} install -y --no-install-recommends" PKGLIST="apt.pkg.list" shortdist=deb10 - echo "This os in not supported" - exit elif [[ "${dist}" == *"centos"* ]] && [[ "${dist_ver}" == *"8"* ]]; then echo "Centos 8 Detected" PKGM="dnf" PKGI="${PKGM} install --setopt=install_weak_deps=False --best -y" PKGLIST="dnf.pkg.list" shortdist=cent8 +else echo "This os in not supported" exit -else -echo "This os in not supported" -exit fi unset dist_ver dist APTMODE @@ -71,10 +66,6 @@ branch=master ###Select Module type mtype=""$repo"/raw/branch/"$branch"" -#SelfBuilding Vars -PKGI="${PKGM} install -y" - - ##---------------## # Functions #