summaryrefslogtreecommitdiff
path: root/roles/storage/zfs/syncoid/templates/systemd.service.j2
diff options
context:
space:
mode:
Diffstat (limited to 'roles/storage/zfs/syncoid/templates/systemd.service.j2')
-rw-r--r--roles/storage/zfs/syncoid/templates/systemd.service.j23
1 files changed, 3 insertions, 0 deletions
diff --git a/roles/storage/zfs/syncoid/templates/systemd.service.j2 b/roles/storage/zfs/syncoid/templates/systemd.service.j2
index ada34336..0d214595 100644
--- a/roles/storage/zfs/syncoid/templates/systemd.service.j2
+++ b/roles/storage/zfs/syncoid/templates/systemd.service.j2
@@ -6,6 +6,9 @@ Type=oneshot
{% for path,config in item.value.paths.items() %}
ExecStart=/var/lib/syncoid/syncoid_wrapper --dumpsnaps --quiet {{ config.recursive | default(false) | ternary('-r ', '') }}{{ config.skip_parent | default(false) | ternary('--skip-parent ', '') }}{% for re in config.exclude | default([]) %}--exclude='{{ re }}' {% endfor %}{% if 'ssh_port' in item.value %}--sshport {{ item.value.ssh_port }} {% endif %}root@{{ item.value.ssh_hostname }}:{{ path }} {{ zfs_syncoid_target_pool }}/{{ item.key }}/{{ path }}
{% endfor %}
+{% if 'periodic' in item.value %}
+TimeoutStartSec={{ item.value.periodic.timeout }}
+{% endif %}
PrivateTmp=yes
ProtectHome=yes
ProtectKernelTunables=yes