From 68aae63242d84eb7bb0101b958443a2fe97e7212 Mon Sep 17 00:00:00 2001 From: FailedProxy Date: Fri, 27 Mar 2026 20:08:50 +0000 Subject: [PATCH] stable --- common.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/common.sh b/common.sh index 181c4cc..d0c5498 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 }