diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-21 08:29:52 +0100 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-01-21 12:23:18 +0000 |
commit | a239b032a018c49fa570c6568f62e858ce738ba2 (patch) | |
tree | f2a4558bc7b43e232ee89b9c8fd630a8db3e0f5d /data | |
parent | 36d0196a9554fb36fafc541510ca057849c25fd7 (diff) | |
download | vyos-1x-a239b032a018c49fa570c6568f62e858ce738ba2.tar.gz vyos-1x-a239b032a018c49fa570c6568f62e858ce738ba2.zip |
ntp: T5692: add support to configure leap second behavior
* set service ntp leap-second [ignore|smear|system|timezone]
Where timezone is the new and old default resulting in adding "leapsectz right/UTC"
to chrony.conf. The most prominent new option is "smear" which will add
leapsecmode slew
maxslewrate 1000
smoothtime 400 0.001 leaponly
to chrony.
See https://chrony-project.org/doc/4.3/chrony.conf.html leapsecmode for
additional information
(cherry picked from commit 7ae064bab0010dff8827a0ed5e1239d2778dc7c1)
Diffstat (limited to 'data')
-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 }} |