Merge pull request #15595 from Security-Onion-Solutions/TOoSmOotH-patch-5

Update version check to include 2.4.211
This commit is contained in:
Josh Patterson
2026-03-13 14:32:59 -04:00
committed by GitHub

View File

@@ -375,7 +375,7 @@ postupgrade_changes() {
}
check_minimum_version() {
if [[ "$INSTALLEDVERSION" != "2.4.210" ]] && [[ ! "$INSTALLEDVERSION" =~ ^3\. ]]; then
if [[ "$INSTALLEDVERSION" != "2.4.210" ]] && [[ "$INSTALLEDVERSION" != "2.4.211" ]] && [[ ! "$INSTALLEDVERSION" =~ ^3\. ]]; then
echo "You must be on at least Security Onion 2.4.210 to upgrade. Currently installed version: $INSTALLEDVERSION"
exit 1
fi