From 6a8fd790ff9a7f4f6876c2d48e10d2c36552f94d Mon Sep 17 00:00:00 2001 From: Ben Fogt Date: Mon, 27 Dec 2021 22:09:21 +0000 Subject: [PATCH] Added Debian 11 --- xlxd-debian-installer.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xlxd-debian-installer.sh b/xlxd-debian-installer.sh index 82a7adc..fa83d63 100755 --- a/xlxd-debian-installer.sh +++ b/xlxd-debian-installer.sh @@ -24,6 +24,7 @@ WEBDIR=/var/www/xlxd XLXINSTDIR=/root/reflector-install-files/xlxd DEP="git build-essential apache2 php libapache2-mod-php php7.0-mbstring" DEP2="git build-essential apache2 php libapache2-mod-php php7.3-mbstring" +DEP3="git build-essential apache2 php libapache2-mod-php php7.4-mbstring" VERSION=$(sed 's/\..*//' /etc/debian_version) clear echo "" @@ -54,6 +55,9 @@ then elif [ $VERSION = 10 ] then apt-get -y install $DEP2 +elif [ $VERSION = 11 ] +then + apt-get -y install $DEP3 fi echo "------------------------------------------------------------------------------"