From c5066f2b319b82697804e10e6b7e317408b033e8 Mon Sep 17 00:00:00 2001 From: szaimen Date: Sun, 8 May 2022 17:42:10 +0200 Subject: [PATCH] make error message more clear Signed-off-by: szaimen --- Containers/mastercontainer/start.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Containers/mastercontainer/start.sh b/Containers/mastercontainer/start.sh index 2d7f62de..31462cbd 100755 --- a/Containers/mastercontainer/start.sh +++ b/Containers/mastercontainer/start.sh @@ -64,10 +64,12 @@ fi # Check if startup command was executed correctly if ! sudo -u www-data docker ps | grep -q "nextcloud-aio-mastercontainer"; then - echo "It seems like you did not give the mastercontainer the correct name?" + echo "It seems like you did not give the mastercontainer the correct name? +Using a different name is not supported!" exit 1 elif ! sudo -u www-data docker volume ls | grep -q "nextcloud_aio_mastercontainer"; then - echo "It seems like you did not give the mastercontainer volume the correct name?" + echo "It seems like you did not give the mastercontainer volume the correct name? +Using a different name is not supported!" exit 1 fi