From b9ea97047536242b49ec6492b06f6af84fe469e5 Mon Sep 17 00:00:00 2001 From: FailedProxy Date: Fri, 27 Mar 2026 20:07:41 +0000 Subject: [PATCH] test --- common.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/common.sh b/common.sh index 07283fc..181c4cc 100644 --- a/common.sh +++ b/common.sh @@ -152,7 +152,12 @@ start_containers() { for c in "${RUNNING_CONTAINERS[@]}"; do info "Starting $c" - ssh -i "$SSH_KEY" root@"$REMOTE_SERVER" "docker start $c" >/dev/null + + if ssh -i "$SSH_KEY" root@"$REMOTE_SERVER" "docker start $c" >/dev/null; then + success "$c started" + else + error "Failed to start $c" + fi done }