dfg
This commit is contained in:
parent
6a69297072
commit
b76500327e
1 changed files with 1 additions and 14 deletions
|
@ -7,7 +7,7 @@ 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 }} > /dev/null 2>&1 ; then
|
if [[ "$(/usr/sbin/zfs get mounted -H {{ item.src | regex_replace('^/', '') }} | cut -f3)" = "yes" ; 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)" = "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 }}/
|
||||||
|
@ -19,16 +19,3 @@ else
|
||||||
echo "Source-Dataset not mounted!"
|
echo "Source-Dataset not mounted!"
|
||||||
fi
|
fi
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{# 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