diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-21 08:29:52 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-01-21 08:50:26 +0100 |
commit | 7ae064bab0010dff8827a0ed5e1239d2778dc7c1 (patch) | |
tree | 081fe42e07816f77787945d0ca7eb9ad6ae02879 /interface-definitions/service_ntp.xml.in | |
parent | 5c29cf757b449d68f06715a58d0b2e65e0a6c636 (diff) | |
download | vyos-1x-7ae064bab0010dff8827a0ed5e1239d2778dc7c1.tar.gz vyos-1x-7ae064bab0010dff8827a0ed5e1239d2778dc7c1.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
Diffstat (limited to 'interface-definitions/service_ntp.xml.in')
-rw-r--r-- | interface-definitions/service_ntp.xml.in | 36 |
1 files changed, 32 insertions, 4 deletions
diff --git a/interface-definitions/service_ntp.xml.in b/interface-definitions/service_ntp.xml.in index 65a45d7a1..c057b62b5 100644 --- a/interface-definitions/service_ntp.xml.in +++ b/interface-definitions/service_ntp.xml.in @@ -9,6 +9,38 @@ <priority>900</priority> </properties> <children> + #include <include/allow-client.xml.i> + #include <include/generic-interface.xml.i> + #include <include/listen-address.xml.i> + #include <include/interface/vrf.xml.i> + <leafNode name="leap-second"> + <properties> + <help>Leap second behavior</help> + <completionHelp> + <list>ignore smear system timezone</list> + </completionHelp> + <valueHelp> + <format>ignore</format> + <description>No correction is applied to the clock for the leap second</description> + </valueHelp> + <valueHelp> + <format>smear</format> + <description>Correct served time slowly be slewing instead of stepping</description> + </valueHelp> + <valueHelp> + <format>system</format> + <description>Kernel steps the system clock forward or backward</description> + </valueHelp> + <valueHelp> + <format>timezone</format> + <description>Use UTC timezone database to determine when will the next leap second occur</description> + </valueHelp> + <constraint> + <regex>(ignore|smear|system|timezone)</regex> + </constraint> + </properties> + <defaultValue>timezone</defaultValue> + </leafNode> <tagNode name="server"> <properties> <help>Network Time Protocol (NTP) server</help> @@ -56,10 +88,6 @@ </leafNode> </children> </tagNode> - #include <include/allow-client.xml.i> - #include <include/generic-interface.xml.i> - #include <include/listen-address.xml.i> - #include <include/interface/vrf.xml.i> </children> </node> </children> |