diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-25 19:38:50 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-25 19:41:00 +0200 |
commit | 23cb8c338ad3de4ead79dbad79a0195c91862fcc (patch) | |
tree | 1a44b4b60be8adec92df1b71db8d620255a2db18 /smoketest/scripts/cli/test_interfaces_openvpn.py | |
parent | 150b1760230b6d7be3b7afd479f05e6bc5d861f7 (diff) | |
download | vyos-1x-23cb8c338ad3de4ead79dbad79a0195c91862fcc.tar.gz vyos-1x-23cb8c338ad3de4ead79dbad79a0195c91862fcc.zip |
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.
Diffstat (limited to 'smoketest/scripts/cli/test_interfaces_openvpn.py')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_openvpn.py | 8 |
1 files changed, 0 insertions, 8 deletions
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): |