summaryrefslogtreecommitdiff
path: root/data/templates/chrony/override.conf.j2
diff options
context:
space:
mode:
Diffstat (limited to 'data/templates/chrony/override.conf.j2')
-rw-r--r--data/templates/chrony/override.conf.j218
1 files changed, 18 insertions, 0 deletions
diff --git a/data/templates/chrony/override.conf.j2 b/data/templates/chrony/override.conf.j2
new file mode 100644
index 000000000..0ab8f0824
--- /dev/null
+++ b/data/templates/chrony/override.conf.j2
@@ -0,0 +1,18 @@
+{% set vrf_command = 'ip vrf exec ' ~ vrf ~ ' ' if vrf is vyos_defined else '' %}
+[Unit]
+StartLimitIntervalSec=0
+ConditionPathExists={{ config_file }}
+After=vyos-router.service
+
+[Service]
+User=root
+EnvironmentFile=
+ExecStart=
+ExecStart={{ vrf_command }}/usr/sbin/chronyd -F 1 -f {{ config_file }}
+PIDFile=
+PIDFile={{ config_file | replace('.conf', '.pid') }}
+Restart=always
+RestartSec=10
+# Required for VRF support
+ProcSubset=all
+ProtectControlGroups=no