summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-01-21 13:37:56 +0100
committerGitHub <noreply@github.com>2024-01-21 13:37:56 +0100
commit4412d1ae8499de3a49d99c37f66b93c6b4693295 (patch)
tree66aa5d679b8b92ffb9fcb344627e7ae50e546345 /data
parent1ca76b8f9b069ce1f8073326518196dbe95681c6 (diff)
parenta239b032a018c49fa570c6568f62e858ce738ba2 (diff)
downloadvyos-1x-4412d1ae8499de3a49d99c37f66b93c6b4693295.tar.gz
vyos-1x-4412d1ae8499de3a49d99c37f66b93c6b4693295.zip
Merge pull request #2866 from vyos/mergify/bp/sagitta/pr-2863
ntp: T5692: add support to configure leap second behavior (backport #2863)
Diffstat (limited to 'data')
-rw-r--r--data/templates/chrony/chrony.conf.j210
1 files changed, 10 insertions, 0 deletions
diff --git a/data/templates/chrony/chrony.conf.j2 b/data/templates/chrony/chrony.conf.j2
index d02fbf71d..e3f078fdc 100644
--- a/data/templates/chrony/chrony.conf.j2
+++ b/data/templates/chrony/chrony.conf.j2
@@ -21,7 +21,17 @@ ntsdumpdir /run/chrony
pidfile {{ config_file | replace('.conf', '.pid') }}
# Determine when will the next leap second occur and what is the current offset
+{% if leap_second is vyos_defined('timezone') %}
leapsectz right/UTC
+{% elif leap_second is vyos_defined('ignore') %}
+leapsecmode ignore
+{% elif leap_second is vyos_defined('smear') %}
+leapsecmode slew
+maxslewrate 1000
+smoothtime 400 0.001024 leaponly
+{% elif leap_second is vyos_defined('system') %}
+leapsecmode system
+{% endif %}
user {{ user }}