sdfg
This commit is contained in:
parent
7f3a6c817a
commit
840037aa46
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
|
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 --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
|
else
|
||||||
echo "Destination-Dataset not mounted!"
|
echo "Destination-Dataset not mounted!"
|
||||||
fi
|
fi
|
||||||
|
@ -19,12 +19,15 @@ else
|
||||||
fi
|
fi
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
{# Beispiel
|
||||||
# --checksum ; https://serverfault.com/questions/211005/rsync-difference-between-checksum-and-ignore-times-options
|
echo "-----------------------"
|
||||||
|
echo "Source: /hdd_data/tmp/"
|
||||||
|
if /usr/sbin/zfs get mounted -H /hdd_data/tmp/ 2>&1 > /dev/null ; then
|
||||||
# beispiel cmd hier rein
|
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/
|
||||||
# --itemize-changes
|
else
|
||||||
|
echo "Destination-Dataset not mounted!"
|
||||||
# rsync: [generator] failed to set times on "/backup/pve5/tmp/.": Operation not permitted (1)
|
fi
|
||||||
|
else
|
||||||
|
echo "Source-Dataset not mounted!"
|
||||||
|
fi#}
|
||||||
|
|
Loading…
Reference in a new issue