remove syncoid, switch to rsync #221
1 changed files with 13 additions and 10 deletions
|
@ -10,7 +10,7 @@ echo "Destination: {{ item.dest.split(':') | last }}"
|
|||
if /usr/sbin/zfs get mounted -H {{ item.src }} 2>&1 > /dev/null ; then
|
||||
{# Mount check destination #}
|
||||
if [[ "$(ssh -i /etc/rsync_mirror/.ssh/id_rsync_mirror -o StrictHostKeyChecking=no {{ item.dest.split(':') | first }} /usr/sbin/zfs get mounted -H {{ item.dest.split(':') | last }} | cut -f3)" -eq "yes" ]] ; then
|
||||
rsync -e "ssh -i /etc/rsync_mirror/.ssh/id_rsync_mirror -o StrictHostKeyChecking=no" --dry-run --bwlimit={{ rsync_mirror_bw_limit }} --archive --omit-dir-times --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 --itemize-changes --omit-dir-times --human-readable --stats --compress --fuzzy --force --delete-after --recursive {{ item.src }} {{ item.dest }}
|
||||
else
|
||||
echo "Destination-Dataset not mounted!"
|
||||
fi
|
||||
|
@ -19,12 +19,15 @@ else
|
|||
fi
|
||||
{% endfor %}
|
||||
|
||||
|
||||
# --checksum ; https://serverfault.com/questions/211005/rsync-difference-between-checksum-and-ignore-times-options
|
||||
|
||||
|
||||
# beispiel cmd hier rein
|
||||
|
||||
# --itemize-changes
|
||||
|
||||
# rsync: [generator] failed to set times on "/backup/pve5/tmp/.": Operation not permitted (1)
|
||||
{# Beispiel
|
||||
echo "-----------------------"
|
||||
echo "Source: /hdd_data/tmp/"
|
||||
if /usr/sbin/zfs get mounted -H /hdd_data/tmp/ 2>&1 > /dev/null ; then
|
||||
if [[ "$(ssh -i /etc/rsync_mirror/.ssh/id_rsync_mirror -o StrictHostKeyChecking=no rsync_mirror@pbs.mgrote.net /usr/sbin/zfs get mounted -H /backup/pve5/tmp | cut -f3)" -eq "yes" ]] ; then
|
||||
rsync -e "ssh -i /etc/rsync_mirror/.ssh/id_rsync_mirror -o StrictHostKeyChecking=no" --itemize-changes --bwlimit=2m --verbose --omit-dir-times --archive --human-readable --stats --compress --fuzzy --force --delete-after --recursive /hdd_data/tmp/ rsync_mirror@pbs.mgrote.net:/backup/pve5/tmp/
|
||||
else
|
||||
echo "Destination-Dataset not mounted!"
|
||||
fi
|
||||
else
|
||||
echo "Source-Dataset not mounted!"
|
||||
fi#}
|
||||
|
|
Loading…
Reference in a new issue