sdf
This commit is contained in:
parent
fc16e42791
commit
f2b729f8f9
1 changed files with 2 additions and 2 deletions
|
@ -6,9 +6,9 @@
|
||||||
echo "-----------------------"
|
echo "-----------------------"
|
||||||
echo "Source: {{ item.src }}"
|
echo "Source: {{ item.src }}"
|
||||||
{# Mount check source #}
|
{# Mount check source #}
|
||||||
if /usr/sbin/zfs get mounted -H {{ item.src }} ; 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 --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 }}
|
||||||
else
|
else
|
||||||
echo "Destination-Dataset not mounted!"
|
echo "Destination-Dataset not mounted!"
|
||||||
|
|
Loading…
Reference in a new issue