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"