syncoid: remove unnecessary sed
This commit is contained in:
parent
7a0770efb2
commit
00a507c509
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ Type=oneshot
|
||||||
# check if dest-dataset is mounted (sed: entferne 1. Zeile; awk: zeige nur yes/no; grep: RC1 when != yes)
|
# 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 %}
|
{% for item in sanoid_syncoid_datasets_sync %}
|
||||||
# check if target dataset is mounted
|
# check if target dataset is mounted
|
||||||
ExecStart=/bin/sh -c '/usr/sbin/zfs get mounted {{ item.destination_mount_check }} | sed 1d | awk "{print $3}" | grep yes > /dev/null'
|
ExecStart=/bin/sh -c '/usr/sbin/zfs get mounted -H {{ item.destination_mount_check }} | awk "{print $3}" | grep yes > /dev/null'
|
||||||
# check if source host is reachable
|
# check if source host is reachable
|
||||||
ExecStart=/bin/sh -c 'ping -c1 -W1 {{ item.source_host }} > /dev/null || {{ item.source_host }} not reachable!'
|
ExecStart=/bin/sh -c 'ping -c1 -W1 {{ item.source_host }} > /dev/null || {{ item.source_host }} not reachable!'
|
||||||
# syncoid
|
# syncoid
|
||||||
|
|
Loading…
Reference in a new issue