From 804366f8c6c7ee0b14b1fbf1e8c8b2f39989c8f9 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Tue, 29 Oct 2024 15:28:56 +0100 Subject: [PATCH] sdf --- roles/mgrote_rsync/templates/rsync_mirror.sh.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/mgrote_rsync/templates/rsync_mirror.sh.j2 b/roles/mgrote_rsync/templates/rsync_mirror.sh.j2 index bcfaefcf..a850d762 100644 --- a/roles/mgrote_rsync/templates/rsync_mirror.sh.j2 +++ b/roles/mgrote_rsync/templates/rsync_mirror.sh.j2 @@ -6,7 +6,7 @@ echo "-----------------------" echo "Source: {{ item.src }}" {# 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 #} if [ $(ssh {{ 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 }}