sdfg
All checks were successful
ansible-lint / gitleaks (pull_request) Successful in 2s
ansible-lint / Ansible Lint (pull_request) Successful in 25s

This commit is contained in:
Michael Grote 2024-10-29 15:52:40 +01:00
parent 7f3a6c817a
commit 840037aa46

View file

@ -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#}