From c545bffc5331fd72657f6451855607500128ea8a Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Thu, 30 Apr 2026 16:07:48 +0200 Subject: [PATCH] mastercontainer: fix checking for AIO_LOG_LEVEL Signed-off-by: Simon L. --- Containers/mastercontainer/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/mastercontainer/start.sh b/Containers/mastercontainer/start.sh index 3551f690..72260a4e 100644 --- a/Containers/mastercontainer/start.sh +++ b/Containers/mastercontainer/start.sh @@ -338,7 +338,7 @@ else fi # Log level logics -if [ -n "$AIO_LOG_LEVEL" ] && ! grep -q "^debug$\|^info$\|^warn$\|^error$"; then +if [ -n "$AIO_LOG_LEVEL" ] && ! echo "$AIO_LOG_LEVEL" | grep -q "^debug$\|^info$\|^warn$\|^error$"; then print_red "AIO_LOG_LEVEL must be one of 'debug', 'info', 'warn' or 'error'. It is set to '$AIO_LOG_LEVEL'". exit 1