Merge pull request #127 from michaelr0/almalinux-9

Add almalinux 9 to the checks
This commit is contained in:
Roni Väyrynen
2022-06-07 10:46:22 +03:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -1265,9 +1265,8 @@ function CheckOS {
exit 1
fi
# for future if/when something above 8 is released
if [[ "$OSNAME" == "AlmaLinux" ]] && [[ "$OSVERSION" != "8" ]]; then
printfail "Only AlmaLinux 8 supported"
if [[ "$OSNAME" == "AlmaLinux" ]] && [[ ! "$OSVERSION" =~ ^(8|9)$ ]]; then
printfail "Only AlmaLinux 8/9 supported"
exit 1
fi