From 23cb8c338ad3de4ead79dbad79a0195c91862fcc Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Fri, 25 Jun 2021 19:38:50 +0200 Subject: openvpn: T1704: drop deprecated disable-ncp option (cherry picked from commit 6b7b19c93f90839549dd668116c4da2f38cfdc66) VyOS 1.3 will ship OpenVPN 2.5.1 and thus it is the perfect timing to still remove this option before introducing it in a new LTS release. --- smoketest/scripts/cli/test_interfaces_openvpn.py | 8 -------- 1 file changed, 8 deletions(-) (limited to 'smoketest/scripts/cli') diff --git a/smoketest/scripts/cli/test_interfaces_openvpn.py b/smoketest/scripts/cli/test_interfaces_openvpn.py index 00db3f667..c9376b032 100755 --- a/smoketest/scripts/cli/test_interfaces_openvpn.py +++ b/smoketest/scripts/cli/test_interfaces_openvpn.py @@ -76,16 +76,8 @@ class TestInterfacesOpenVPN(unittest.TestCase): interface = 'vtun2000' path = base_path + [interface] self.session.set(path + ['mode', 'client']) - - # check validate() - cannot specify both "encryption disable-ncp" and - # "encryption ncp-ciphers" at the same time - self.session.set(path + ['encryption', 'disable-ncp']) self.session.set(path + ['encryption', 'ncp-ciphers', 'aes192gcm']) - with self.assertRaises(ConfigSessionError): - self.session.commit() - self.session.delete(path + ['encryption', 'ncp-ciphers']) - # check validate() - cannot specify local-port in client mode self.session.set(path + ['local-port', '5000']) with self.assertRaises(ConfigSessionError): -- cgit v1.2.3