From 9e9d650262c8d59bfaccfbb2b54bb1e8c0fb5f12 Mon Sep 17 00:00:00 2001 From: necro-nemesis Date: Sun, 12 Sep 2021 15:19:35 -0400 Subject: [PATCH] Update common.sh --- installers/common.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/installers/common.sh b/installers/common.sh index 3f960db..3019a13 100755 --- a/installers/common.sh +++ b/installers/common.sh @@ -5,7 +5,11 @@ version=`sed 's/\..*//' /etc/debian_version` # Determine version, set default home location for lighttpd and # php package to install -if [ $version -eq 10 ]; then +if [ $version -eq 11 ]; then + version_msg="11.0 (Bullseye)" + sudo apt update --allow-releaseinfo-change + php_package="php7.4-cgi" +elif [ $version -eq 10 ]; then version_msg="10.0 (Buster)" sudo apt update --allow-releaseinfo-change php_package="php7.3-cgi"