diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-21 13:37:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 13:37:56 +0100 |
commit | 4412d1ae8499de3a49d99c37f66b93c6b4693295 (patch) | |
tree | 66aa5d679b8b92ffb9fcb344627e7ae50e546345 /src/conf_mode | |
parent | 1ca76b8f9b069ce1f8073326518196dbe95681c6 (diff) | |
parent | a239b032a018c49fa570c6568f62e858ce738ba2 (diff) | |
download | vyos-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 'src/conf_mode')
-rwxr-xr-x | src/conf_mode/service_ntp.py | 4 |
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 |