homeserver/roles/mgrote_rsync/templates/rsync_mirror.sh.j2
2024-10-29 15:46:55 +01:00

30 lines
1.2 KiB
Django/Jinja

#!/bin/bash
{{ file_header | default () }}
{% for item in rsync_mirror_dirs %}
{# Header #}
echo "-----------------------"
echo "Source: {{ item.src }}"
echo "Destination: {{ item.dest.split(':') | last }}"
{# Mount check source #}
if /usr/sbin/zfs get mounted -H {{ item.src }} 2>&1 > /dev/null ; then
{# 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
rsync -e "ssh -i /etc/rsync_mirror/.ssh/id_rsync_mirror -o StrictHostKeyChecking=no" --dry-run --bwlimit={{ rsync_mirror_bw_limit }} --archive --human-readable --stats --compress --fuzzy --force --delete-after --recursive {{ item.src }} {{ item.dest }}
else
echo "Destination-Dataset not mounted!"
fi
else
echo "Source-Dataset not mounted!"
fi
{% endfor %}
# --checksum ; https://serverfault.com/questions/211005/rsync-difference-between-checksum-and-ignore-times-options
# beispiel cmd hier rein
# --itemize-changes
# rsync: [generator] failed to set times on "/backup/pve5/tmp/.": Operation not permitted (1)