From ae525a73946f1858e50622d24addbb067094b9c6 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Wed, 26 Jan 2022 10:49:32 -0500 Subject: [PATCH] scripts/installer: add Centos Stream 9 support (#3818) Blocked on package server support being deployed Signed-off-by: Xe --- scripts/installer.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/installer.sh b/scripts/installer.sh index df27e6b10..7517357ea 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -142,7 +142,7 @@ main() { VERSION="tumbleweed" PACKAGETYPE="zypper" ;; - arch) + arch) OS="$ID" VERSION="" # rolling release PACKAGETYPE="pacman" @@ -250,7 +250,8 @@ main() { ;; centos) if [ "$VERSION" != "7" ] && \ - [ "$VERSION" != "8" ] + [ "$VERSION" != "8" ] && \ + [ "$VERSION" != "9" ] then OS_UNSUPPORTED=1 fi