summaryrefslogtreecommitdiff
path: root/src/conf_mode/service_ntp.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-01-21 08:29:52 +0100
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-01-21 12:23:18 +0000
commita239b032a018c49fa570c6568f62e858ce738ba2 (patch)
treef2a4558bc7b43e232ee89b9c8fd630a8db3e0f5d /src/conf_mode/service_ntp.py
parent36d0196a9554fb36fafc541510ca057849c25fd7 (diff)
downloadvyos-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 'src/conf_mode/service_ntp.py')
-rwxr-xr-xsrc/conf_mode/service_ntp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/service_ntp.py b/src/conf_mode/service_ntp.py
index 1cc23a7df..f11690ee6 100755
--- a/src/conf_mode/service_ntp.py
+++ b/src/conf_mode/service_ntp.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
-# Copyright (C) 2018-2023 VyOS maintainers and contributors
+# Copyright (C) 2018-2024 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
@@ -42,7 +42,7 @@ def get_config(config=None):
if not conf.exists(base):
return None
- ntp = conf.get_config_dict(base, key_mangling=('-', '_'), get_first_key=True)
+ ntp = conf.get_config_dict(base, key_mangling=('-', '_'), get_first_key=True, with_defaults=True)
ntp['config_file'] = config_file
ntp['user'] = user_group