remove syncoid, switch to rsync #221
1 changed files with 4 additions and 1 deletions
|
@ -4,5 +4,8 @@
|
||||||
{% for item in rsync_mirror_dirs %}
|
{% for item in rsync_mirror_dirs %}
|
||||||
echo "-----------------------"
|
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" --dry-run --bwlimit={{ rsync_mirror_bw_limit }} --archive --verbose --human-readable --stats --compress --fuzzy --force --delete-after --recursive {{ item.src }} {{ item.dest }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
|
||||||
|
# --checksum ; https://serverfault.com/questions/211005/rsync-difference-between-checksum-and-ignore-times-options
|
||||||
|
|
Loading…
Reference in a new issue