2024-06-17 22:31:05 +02:00
|
|
|
#!/bin/bash
|
|
|
|
{{ file_header | default () }}
|
|
|
|
|
|
|
|
# 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
|
2024-06-21 10:20:52 +02:00
|
|
|
/usr/sbin/zfs get mounted -H {{ item.destination_mount_check }} 2>&1 > /dev/null || echo "Pool not mounted!"
|
2024-06-17 22:31:05 +02:00
|
|
|
# check if source host is reachable
|
|
|
|
ping -c1 -W1 {{ item.source_host }} > /dev/null || {{ item.source_host }} not reachable!
|
|
|
|
# syncoid
|
2024-06-21 10:20:52 +02:00
|
|
|
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
|
2024-06-17 22:31:05 +02:00
|
|
|
{% endfor %}
|