diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-10-04 19:50:57 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-10-04 19:50:57 +0200 |
commit | 5fca68d821c549572b07f073635170359a9f82c8 (patch) | |
tree | 78f0d4c8a373ae9c41565aad0454a044a33af9e0 /smoketest | |
parent | e8a3153f09de71e5671bd4d662a51a2c39136be3 (diff) | |
download | vyos-1x-5fca68d821c549572b07f073635170359a9f82c8.tar.gz vyos-1x-5fca68d821c549572b07f073635170359a9f82c8.zip |
smoketest: ntp: T2944: fix "allowed-networks statement" test
Remove duplicate localhost listen IP addresses. Commit ca61add5e7 ("ntp: T2944:
By default do not listen port 123 on any address") explicitly added listen
statements for localhost.
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_system_ntp.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/smoketest/scripts/cli/test_system_ntp.py b/smoketest/scripts/cli/test_system_ntp.py index 2a7c64870..4f62b62d5 100755 --- a/smoketest/scripts/cli/test_system_ntp.py +++ b/smoketest/scripts/cli/test_system_ntp.py @@ -70,10 +70,6 @@ class TestSystemNTP(unittest.TestCase): def test_ntp_clients(self): """ Test the allowed-networks statement """ - listen_address = ['127.0.0.1', '::1'] - for listen in listen_address: - self.session.set(base_path + ['listen-address', listen]) - networks = ['192.0.2.0/24', '2001:db8:1000::/64'] for network in networks: self.session.set(base_path + ['allow-clients', 'address', network]) @@ -99,9 +95,7 @@ class TestSystemNTP(unittest.TestCase): # Check listen address tmp = get_config_value('interface') - test = ['ignore wildcard'] - for listen in listen_address: - test.append(f'listen {listen}') + test = ['ignore wildcard', 'listen 127.0.0.1', 'listen ::1'] self.assertEqual(tmp, test) # Check for running process |