From 09e9cec0c3395779f44427a86643225915171e14 Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Fri, 8 May 2026 18:53:41 -0400 Subject: [PATCH] feat(rsync): print status message when transfer starts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit rsync output is fully captured — nothing visible while it runs. Adds a "Rsync running — this may take a while..." line before each attempt so the Unraid log viewer shows transfer progress clearly. Co-Authored-By: Claude Sonnet 4.6 --- Rsync/rsync.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Rsync/rsync.sh b/Rsync/rsync.sh index 5a27efc..f1b4921 100644 --- a/Rsync/rsync.sh +++ b/Rsync/rsync.sh @@ -219,6 +219,7 @@ ATTEMPT=0 for (( ATTEMPT=1; ATTEMPT<=RETRY_COUNT; ATTEMPT++ )); do log "$ICON_RETRY Attempt $ATTEMPT of $RETRY_COUNT..." + echo "$ICON_SYNC Rsync running — this may take a while..." RSYNC_OUTPUT=$(rsync "${RSYNC_OPTS[@]}" \ -e "ssh -i $SSH_KEY -T -o Compression=no -o IPQoS=throughput" \