From 6561dca5aa52c6c53a14eca3dcfcf8ffe057f69f Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Tue, 29 Oct 2024 14:22:28 +0100 Subject: [PATCH] sdfg --- roles/mgrote_rsync/templates/rsync_mirror.sh.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/mgrote_rsync/templates/rsync_mirror.sh.j2 b/roles/mgrote_rsync/templates/rsync_mirror.sh.j2 index 91e08e96..f98d5c57 100644 --- a/roles/mgrote_rsync/templates/rsync_mirror.sh.j2 +++ b/roles/mgrote_rsync/templates/rsync_mirror.sh.j2 @@ -2,6 +2,7 @@ {{ file_header | default () }} {% for item in rsync_mirror_dirs %} +echo "-----------------------" echo "Source: {{ item.src }}" rsync -e "ssh -i /etc/rsync_mirror/.ssh/id_rsync_mirror -o StrictHostKeyChecking=no" --checksum --dry-run --bwlimit={{ rsync_mirror_bw_limit }} --archive --verbose --human-readable --stats --compress --fuzzy --force --delete-after --recursive {{ item.src }} {{ item.dest }} {% endfor %}