From e8bef63b7895c6c286456f17aeffb9a0caf09d36 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Fri, 21 Jun 2024 10:20:52 +0200 Subject: [PATCH] syncoid: fix output again (#119) Reviewed-on: https://git.mgrote.net/mg/homeserver/pulls/119 Co-authored-by: Michael Grote Co-committed-by: Michael Grote --- roles/mgrote_zfs_sanoid/templates/syncoid.sh.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/mgrote_zfs_sanoid/templates/syncoid.sh.j2 b/roles/mgrote_zfs_sanoid/templates/syncoid.sh.j2 index 81acfe38..6394ffae 100644 --- a/roles/mgrote_zfs_sanoid/templates/syncoid.sh.j2 +++ b/roles/mgrote_zfs_sanoid/templates/syncoid.sh.j2 @@ -4,9 +4,9 @@ # check if dest-dataset is mounted (sed: entferne 1. Zeile; awk: zeige nur yes/no; grep: RC1 when != yes) {% for item in sanoid_syncoid_datasets_sync %} # check if target dataset is mounted -/usr/sbin/zfs get mounted -H {{ item.destination_mount_check }} | awk "{print $3}" | grep yes > /dev/null +/usr/sbin/zfs get mounted -H {{ item.destination_mount_check }} 2>&1 > /dev/null || echo "Pool not mounted!" # check if source host is reachable ping -c1 -W1 {{ item.source_host }} > /dev/null || {{ item.source_host }} not reachable! # syncoid -export HOME=/root ; /usr/bin/syncoid --compress=zstd-fast --sshoption=StrictHostKeyChecking=no --delete-target-snapshots --use-hold --preserve-recordsize --sshkey "/etc/sanoid/.ssh/id_sanoid" --source-bwlimit {{ sanoid_syncoid_bwlimit }} {{ sanoid_user }}@{{ item.source_host }}:{{ item.source_dataset }} {{ item.destination_dataset }} +export HOME=/root ; /usr/bin/syncoid --compress=zstd-fast --sshoption=StrictHostKeyChecking=no --delete-target-snapshots --use-hold --preserve-recordsize --sshkey "/etc/sanoid/.ssh/id_sanoid" --source-bwlimit {{ sanoid_syncoid_bwlimit }} {{ sanoid_user }}@{{ item.source_host }}:{{ item.source_dataset }} {{ item.destination_dataset }} 2> /dev/null {% endfor %}