From 40559c6093d042055e9faabb1c91e1ca42cf5ab6 Mon Sep 17 00:00:00 2001 From: rootzoll Date: Tue, 4 Feb 2025 23:24:32 +0100 Subject: [PATCH] fix string --- home.admin/config.scripts/blitz.data.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home.admin/config.scripts/blitz.data.sh b/home.admin/config.scripts/blitz.data.sh index 00bf8b3f0..5379f409c 100644 --- a/home.admin/config.scripts/blitz.data.sh +++ b/home.admin/config.scripts/blitz.data.sh @@ -646,7 +646,7 @@ if [ "$action" = "setup" ] || [ "$action" = "recover" ]; then # check that it is a valid setup type: STORAGE, SEPERATE-DATA, SEPERATE-SYSTEM actionType=$2 - if [ "${actionType}" != "STORAGE" ] && [ "${actionType}" != "SEPERATE-DATA" ] && [ "${actionType}" != "SEPERATE-SYSTEM" ]; then + if [ "${actionType}" != "STORAGE" ] && [ "${actionType}" != "DATA" ] && [ "${actionType}" != "SYSTEM" ]; then echo "# actionType(${actionType})" echo "error='setup type not supported'" echo "error='setup type not supported'" >> ${logFile}