This commit is contained in:
Michael Grote 2024-10-29 14:22:28 +01:00
parent 3b165c9d02
commit 6561dca5aa

View file

@ -2,6 +2,7 @@
{{ file_header | default () }} {{ file_header | default () }}
{% for item in rsync_mirror_dirs %} {% for item in rsync_mirror_dirs %}
echo "-----------------------"
echo "Source: {{ item.src }}" 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 }} 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 %} {% endfor %}