From 390b3339d101b3c64977b16e002f3ab16488bcb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roni=20V=C3=A4yrynen?= Date: Fri, 1 Aug 2025 11:23:42 +0300 Subject: [PATCH] fix: missing redis variable for rhel <10 --- xo-install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xo-install.sh b/xo-install.sh index b9977cf..8c92eca 100755 --- a/xo-install.sh +++ b/xo-install.sh @@ -1294,6 +1294,8 @@ function CheckOS { # Since version 10, redis is replaced with valkey if [[ $OSVERSION -ge 10 ]]; then REDIS=0 + else + REDIS=1 fi fi