summaryrefslogtreecommitdiff
path: root/smoketest/scripts/system
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2026-05-02 20:35:01 +0200
committerChristian Breunig <christian@breunig.cc>2026-05-02 20:35:01 +0200
commit0bfde189978dec10de9994837c71bc795743aea7 (patch)
treea13f0aff3d3f119738f7d4fec2aca0b99215042d /smoketest/scripts/system
parentdef34d52f3482f955335cfa98ff01317f83c1cd8 (diff)
downloadvyos-1x-0bfde189978dec10de9994837c71bc795743aea7.tar.gz
vyos-1x-0bfde189978dec10de9994837c71bc795743aea7.zip
Debian: T8147: remove out-of-tree OpenVPN DCO module - incl. in Kernel 6.18
Move from the out-of-tree to an in-tree variant of the OpenVPN DCO module. As this was not available in the previous used LTS 6.6 Kernel it now is available while we upgrade to Linux 6.18.
Diffstat (limited to 'smoketest/scripts/system')
-rwxr-xr-xsmoketest/scripts/system/test_kernel_options.py6
-rwxr-xr-xsmoketest/scripts/system/test_module_load.py1
2 files changed, 6 insertions, 1 deletions
diff --git a/smoketest/scripts/system/test_kernel_options.py b/smoketest/scripts/system/test_kernel_options.py
index 2f3c54c79..d3de78e4c 100755
--- a/smoketest/scripts/system/test_kernel_options.py
+++ b/smoketest/scripts/system/test_kernel_options.py
@@ -173,6 +173,12 @@ class TestKernelModules(unittest.TestCase):
tmp = re.findall(f'{option}=y', self._config_data)
self.assertTrue(tmp)
+ def test_openvpn_dco(self):
+ options_to_check = ['CONFIG_OVPN']
+ for option in options_to_check:
+ tmp = re.findall(f'{option}=(y|m)', self._config_data)
+ self.assertTrue(tmp)
+
def test_arm64(self):
# Only required on arm64 platforms
if not IS_ARM64:
diff --git a/smoketest/scripts/system/test_module_load.py b/smoketest/scripts/system/test_module_load.py
index 29fbb407d..5570d74df 100755
--- a/smoketest/scripts/system/test_module_load.py
+++ b/smoketest/scripts/system/test_module_load.py
@@ -24,7 +24,6 @@ modules = {
"qat_c62x", "qat_c62xvf", "qat_d15xx", "qat_d15xxvf",
"qat_dh895xcc", "qat_dh895xccvf"],
"accel_ppp": ["ipoe", "vlan_mon"],
- "openvpn": ["ovpn-dco-v2"]
}
class TestKernelModules(unittest.TestCase):