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 /src/conf_mode/service_ntp.py | |
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 'src/conf_mode/service_ntp.py')
-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 |