From 9f82eb567833ff7e4c5a096bf1c91f32368de3fc Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Mon, 1 Jun 2026 20:24:46 -0400 Subject: [PATCH] =?UTF-8?q?output:=20orchestrators=20=E2=80=94=20array-not?= =?UTF-8?q?-started=20and=20monthly=20gate-not-met=20now=20echo=20instead?= =?UTF-8?q?=20of=20silent=20log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Orchestrators/monthly_maintenance.sh | 4 ++-- Orchestrators/watchdog_orchestrator.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Orchestrators/monthly_maintenance.sh b/Orchestrators/monthly_maintenance.sh index ddf6328..bb7c62a 100755 --- a/Orchestrators/monthly_maintenance.sh +++ b/Orchestrators/monthly_maintenance.sh @@ -163,11 +163,11 @@ fi # ============================================================================================== if [[ "$FORCE_RUN" != true ]]; then if [[ "$UPTIME_GATE_PASS" != true ]]; then - log "Uptime gate — ${_uptime_days}d ${_uptime_hrs}h / ${MONTHLY_UPTIME_THRESHOLD_DAYS}d — not yet due" + echo "Uptime gate not met — ${_uptime_days}d ${_uptime_hrs}h / ${MONTHLY_UPTIME_THRESHOLD_DAYS}d — no-op" exit 0 fi if [[ "$INTERVAL_GATE_PASS" != true ]]; then - log "Interval gate — last run ${DAYS_SINCE_LAST_RUN} ago / ${MONTHLY_RUN_INTERVAL_DAYS}d — not yet due" + echo "Interval gate not met — last run ${DAYS_SINCE_LAST_RUN} ago / ${MONTHLY_RUN_INTERVAL_DAYS}d — no-op" exit 0 fi fi diff --git a/Orchestrators/watchdog_orchestrator.sh b/Orchestrators/watchdog_orchestrator.sh index 126a22f..b9f4bbc 100755 --- a/Orchestrators/watchdog_orchestrator.sh +++ b/Orchestrators/watchdog_orchestrator.sh @@ -119,7 +119,7 @@ fi # ━━━ Array Check ━━━ # ============================================================================================== if ! df --output=fstype /mnt/user 2>/dev/null | grep -q shfs; then - log "Array not started — skipping watchdog cycle" + echo "Array not started — skipping watchdog cycle" exit 0 fi