homeserver/roles/mgrote_rsync/templates/rsync_mirror.sh.j2
2024-10-29 14:22:28 +01:00

8 lines
428 B
Django/Jinja

#!/bin/bash
{{ 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 %}