From 6099ea34ca51e52cf57bbd931eea8040b760290a Mon Sep 17 00:00:00 2001 From: stevoh6 Date: Mon, 31 Aug 2020 21:24:47 +0200 Subject: [PATCH] Add Ubuntu 20.04 (Focal Fossa) into 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 3fc82fb..a2e8b1d 100755 --- a/auto_install/install.sh +++ b/auto_install/install.sh @@ -269,7 +269,7 @@ 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") + declare -A VER_MAP=(["9"]="stretch" ["10"]="buster" ["16.04"]="xenial" ["18.04"]="bionic" ["20.04"]="focal") OSCN=${VER_MAP["${VER}"]} fi @@ -285,7 +285,7 @@ distroCheck(){ case ${PLAT} in Debian|Raspbian|Ubuntu) case ${OSCN} in - buster|xenial|bionic|stretch) + buster|xenial|bionic|stretch|focal) : ;; *)