6 lines
348 B
Django/Jinja
6 lines
348 B
Django/Jinja
#!/bin/bash
|
|
{{ file_header | default () }}
|
|
|
|
{% for item in rsync_mirror_dirs %}
|
|
rsync --checksum --dry-run --bwlimit={{ rsync_mirror_bw_limit }} --archive --verbose --human-readable --stats --compress --fuzzy --force --delete-after --recursive {{ item.src }} {{ rsync_mirror_user }}@{{ rsync_mirror_destination_host }}:{{ item.dest }}
|
|
{% endfor %}
|