dfg
This commit is contained in:
parent
ac6867c13d
commit
c472b9a6f9
1 changed files with 2 additions and 2 deletions
|
@ -7,9 +7,9 @@ echo "-----------------------"
|
||||||
echo "Source: {{ item.src }}"
|
echo "Source: {{ item.src }}"
|
||||||
echo "Destination: {{ item.dest.split(':') | last }}"
|
echo "Destination: {{ item.dest.split(':') | last }}"
|
||||||
{# Mount check source #}
|
{# Mount check source #}
|
||||||
if /usr/sbin/zfs get mounted -H {{ item.src }} 2>&1 > /dev/null ; then
|
if /usr/sbin/zfs get mounted -H {{ item.src }} > /dev/null 2>&1 ; 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)" = "yes" ]] ; then
|
||||||
rsync -e "ssh -i /etc/rsync_mirror/.ssh/id_rsync_mirror -o StrictHostKeyChecking=no" --bwlimit={{ rsync_mirror_bw_limit }} --archive --verbose --inplace --itemize-changes --omit-dir-times --human-readable --stats --compress --fuzzy --force --partial --delete-after --recursive {{ item.src }}/ {{ item.dest }}/
|
rsync -e "ssh -i /etc/rsync_mirror/.ssh/id_rsync_mirror -o StrictHostKeyChecking=no" --bwlimit={{ rsync_mirror_bw_limit }} --archive --verbose --inplace --itemize-changes --omit-dir-times --human-readable --stats --compress --fuzzy --force --partial --delete-after --recursive {{ item.src }}/ {{ item.dest }}/
|
||||||
{# "/" am Ende von Src+Dest ist Wichtig und notwendig, sonst wird in Unterordner kopiert #}
|
{# "/" am Ende von Src+Dest ist Wichtig und notwendig, sonst wird in Unterordner kopiert #}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue