From e42c339baa94adf0edddadeda1a43ee818b9ea9b Mon Sep 17 00:00:00 2001 From: 4s3ti <4s3ti@protonmail.com> Date: Wed, 24 Nov 2021 22:21:10 +0100 Subject: [PATCH] Debian 11 Bullseye Added Debian 11 bullseye to list of supported OS --- auto_install/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto_install/install.sh b/auto_install/install.sh index 526843e..debdf78 100755 --- a/auto_install/install.sh +++ b/auto_install/install.sh @@ -241,14 +241,14 @@ distroCheck(){ source /etc/os-release PLAT=$(awk '{print $1}' <<< "$NAME") VER="$VERSION_ID" - declare -A VER_MAP=(["9"]="stretch" ["10"]="buster" ["16.04"]="xenial" ["18.04"]="bionic" ["20.04"]="focal") + declare -A VER_MAP=(["9"]="stretch" ["10"]="buster" ["11"]="bullseye" ["16.04"]="xenial" ["18.04"]="bionic" ["20.04"]="focal") OSCN=${VER_MAP["${VER}"]} fi case ${PLAT} in Debian|Raspbian|Ubuntu) case ${OSCN} in - stretch|buster|xenial|bionic|focal) + stretch|buster|bullseye|xenial|bionic|focal) : ;; *)