12 lines
566 B
Django/Jinja
12 lines
566 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" --dry-run --bwlimit={{ rsync_mirror_bw_limit }} --archive --verbose --human-readable --stats --compress --fuzzy --force --delete-after --recursive {{ item.src }} {{ item.dest }}
|
|
echo "-----------------------"
|
|
{% endfor %}
|
|
|
|
|
|
# --checksum ; https://serverfault.com/questions/211005/rsync-difference-between-checksum-and-ignore-times-options
|