1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00

Merge pull request #3034 from holta/15-day-extended-support-for-lts-os's

scripts/local_facts.fact: 15 days transitional support for LTS OS's (e.g. both raspbian-10 & raspbian-11 in this case)
This commit is contained in:
A Holt 2021-11-12 12:52:28 -05:00 committed by GitHub
commit 743fc49dbf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,7 +64,6 @@ OS_VER="$OS-$VERSION_ID"
#"centos-7" | \ #"centos-7" | \
#"raspbian-8" | \ #"raspbian-8" | \
#"raspbian-9" | \ #"raspbian-9" | \
#"raspbian-10" | \
# 2021-09-27: With Debian 12 (Bookworm) pre-releases, please manually add # 2021-09-27: With Debian 12 (Bookworm) pre-releases, please manually add
# this line to its /etc/os-release before installing IIAB: VERSION_ID="12" # this line to its /etc/os-release before installing IIAB: VERSION_ID="12"
@ -78,6 +77,7 @@ case $OS_VER in
"ubuntu-2204" | \ "ubuntu-2204" | \
"linuxmint-20" | \ "linuxmint-20" | \
"linuxmint-21" | \ "linuxmint-21" | \
"raspbian-10" | \
"raspbian-11") "raspbian-11")
;; ;;
*) echo -e "\n\e[41;1mOS '$OS_VER' IS NOT SUPPORTED. Please read:\e[0m\n\n\e[1mhttps://github.com/iiab/iiab/wiki/IIAB-Platforms\e[0m\n" ; exit 1 # Used by /opt/iiab/iiab/iiab-install *) echo -e "\n\e[41;1mOS '$OS_VER' IS NOT SUPPORTED. Please read:\e[0m\n\n\e[1mhttps://github.com/iiab/iiab/wiki/IIAB-Platforms\e[0m\n" ; exit 1 # Used by /opt/iiab/iiab/iiab-install