ff
Some checks failed
ansible-lint / gitleaks (pull_request) Successful in 2s
ansible-lint / Ansible Lint (pull_request) Failing after 26s

This commit is contained in:
Michael Grote 2024-10-29 15:31:20 +01:00
parent 4fd2f586eb
commit 7d888ae6d1

View file

@ -8,7 +8,7 @@ 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 }} ; then
{# Mount check destination #} {# Mount check destination #}
if [ $(ssh {{ 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!"