From 4573161f061eed4fecdfb3e648e33ecc7cb78a98 Mon Sep 17 00:00:00 2001 From: M0VUB <76499782+ShaYmez@users.noreply.github.com> Date: Sat, 4 Dec 2021 22:30:25 +0000 Subject: [PATCH] Update xlxd-debian-installer.sh More debian 11 stuff --- xlxd-debian-installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xlxd-debian-installer.sh b/xlxd-debian-installer.sh index 56f1f48..b04a924 100755 --- a/xlxd-debian-installer.sh +++ b/xlxd-debian-installer.sh @@ -24,7 +24,7 @@ WEBDIR=/var/www/xlxd XLXINSTDIR=/root/reflector-install-files/xlxd DEP="git build-essential g++ apache2 php libapache2-mod-php php7.0-mbstring" DEP2="git build-essential g++ apache2 php libapache2-mod-php php7.3-mbstring" -DEP3="build-essential g++ apache2 php libapache2-mod-php php7.4-mbstring" +DEP3="build-essential g++ apache2 php libapache2-mod-php" VERSION=$(sed 's/\..*//' /etc/debian_version) clear echo "" @@ -57,7 +57,7 @@ then apt-get -y install $DEP2 elif [ $VERSION = 11 ] then - apt-get -y install $DEP3 + apt install -y $DEP3 fi echo "------------------------------------------------------------------------------"