summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorIndrajit Raychaudhuri <irc@indrajit.com>2023-03-25 02:42:29 -0500
committerIndrajit Raychaudhuri <irc@indrajit.com>2023-03-25 03:05:15 -0500
commit85ed5feda444604622f08d73ea52e744733315d0 (patch)
tree142bdba1f96eb8a8b254eba3ac9b9d677e9fbe52 /smoketest
parent58b29610221a8f80bea1cfacbd2112f3690fe734 (diff)
downloadvyos-1x-85ed5feda444604622f08d73ea52e744733315d0.tar.gz
vyos-1x-85ed5feda444604622f08d73ea52e744733315d0.zip
ntp: T5112: Enable support for NTS (Network Time Security) in chrony
This is basic configuration to enable NTS support in chrony.
Diffstat (limited to 'smoketest')
-rwxr-xr-xsmoketest/scripts/cli/test_service_ntp.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_service_ntp.py b/smoketest/scripts/cli/test_service_ntp.py
index 3ccd19a31..046e5eea6 100755
--- a/smoketest/scripts/cli/test_service_ntp.py
+++ b/smoketest/scripts/cli/test_service_ntp.py
@@ -46,7 +46,7 @@ class TestSystemNTP(VyOSUnitTestSHIM.TestCase):
def test_01_ntp_options(self):
# Test basic NTP support with multiple servers and their options
servers = ['192.0.2.1', '192.0.2.2']
- options = ['noselect', 'prefer']
+ options = ['nts', 'noselect', 'prefer']
pools = ['pool.vyos.io']
for server in servers:
@@ -65,6 +65,7 @@ class TestSystemNTP(VyOSUnitTestSHIM.TestCase):
config = cmd(f'sudo cat {NTP_CONF}')
self.assertIn('driftfile /run/chrony/drift', config)
self.assertIn('dumpdir /run/chrony', config)
+ self.assertIn('ntsdumpdir /run/chrony', config)
self.assertIn('clientloglimit 1048576', config)
self.assertIn('rtcsync', config)
self.assertIn('makestep 1.0 3', config)