From 84b3b7ce1d7a99c8353c4801a2686a52146c16a9 Mon Sep 17 00:00:00 2001 From: Justin Oros Date: Sun, 19 Apr 2026 22:29:02 -0700 Subject: [PATCH] health-check.sh: fix spoke detection to check for running autossh container instead of compose.yaml presence --- health-check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 health-check.sh diff --git a/health-check.sh b/health-check.sh old mode 100755 new mode 100644 index 0607ec7..62bb0e4 --- a/health-check.sh +++ b/health-check.sh @@ -20,7 +20,7 @@ RCLONE_CONF="${HOME}/.config/rclone/rclone.conf" IS_SPOKE=false IS_HUB=false -if docker ps --format '{{.Names}}' 2>/dev/null | grep -qi autossh || [ -f "$COMPOSE" ]; then +if docker ps --format '{{.Names}}' 2>/dev/null | grep -qi autossh; then IS_SPOKE=true fi