remove syncoid, switch to rsync #221
1 changed files with 2 additions and 1 deletions
|
@ -10,7 +10,8 @@ echo "Destination: {{ item.dest.split(':') | last }}"
|
||||||
if /usr/sbin/zfs get mounted -H {{ item.src }} 2>&1 > /dev/null ; then
|
if /usr/sbin/zfs get mounted -H {{ item.src }} 2>&1 > /dev/null ; then
|
||||||
{# Mount check destination #}
|
{# 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
|
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 --verbose --itemize-changes --omit-dir-times --human-readable --stats --compress --fuzzy --force --delete-after --recursive {{ item.src }}/ {{ item.dest }}/ {# "/" am Ende von Src+Dest ist Wichtig und notwendig, sonst wird in Unterordner kopiert #}
|
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 }}/
|
||||||
|
{# "/" am Ende von Src+Dest ist Wichtig und notwendig, sonst wird in Unterordner kopiert #}
|
||||||
else
|
else
|
||||||
echo "Destination-Dataset not mounted!"
|
echo "Destination-Dataset not mounted!"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue