diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-21 13:22:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 13:22:29 +0100 |
commit | c9bceff2191986af504b114d2d8cfc3547f72ed1 (patch) | |
tree | 47a8395e041f329f4c2e83cee2562296b9186aed /data/templates/chrony/chrony.conf.j2 | |
parent | 7c43d6c370d6635f0064bde23d50875aeae94c4b (diff) | |
parent | 7ae064bab0010dff8827a0ed5e1239d2778dc7c1 (diff) | |
download | vyos-1x-c9bceff2191986af504b114d2d8cfc3547f72ed1.tar.gz vyos-1x-c9bceff2191986af504b114d2d8cfc3547f72ed1.zip |
Merge pull request #2863 from c-po/ntp-T5692
ntp: T5692: add support to configure leap second behavior
Diffstat (limited to 'data/templates/chrony/chrony.conf.j2')
-rw-r--r-- | data/templates/chrony/chrony.conf.j2 | 10 |
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 }} |