From cad44291cec6c294961bccffbf9f7f92572cf71f Mon Sep 17 00:00:00 2001 From: gyurix Date: Thu, 9 Sep 2021 11:32:40 +0200 Subject: [PATCH] Minor change. --- scripts/check_proxy_state.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check_proxy_state.sh b/scripts/check_proxy_state.sh index 0747c36..47015f7 100755 --- a/scripts/check_proxy_state.sh +++ b/scripts/check_proxy_state.sh @@ -110,9 +110,9 @@ elif [[ "$RUNNING_CONTAINERS" -eq 0 ]] ; then if docker ps | grep $proxies ; then echo "$proxies started successful"; else - echo "$proxies starting was unsuccesful" + echo "$proxies starting was unsuccesful"; # In case of unsuccessfuly restarted proxy needed to start the proxy containers restarting process. - do_proxy_restart "$CONTAINER_NAMES"; + do_proxy_restart $proxies; fi done