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