homeserver/roles/mgrote_rsync/templates/rsync_mirror.sh.j2
Michael Grote 3b165c9d02
Some checks failed
ansible-lint / gitleaks (pull_request) Successful in 2s
ansible-lint / Ansible Lint (pull_request) Failing after 25s
ff
2024-10-29 14:21:45 +01:00

7 lines
397 B
Django/Jinja

#!/bin/bash
{{ file_header | default () }}
{% for item in rsync_mirror_dirs %}
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 %}