diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-25 01:51:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-25 01:51:23 +0200 |
commit | 87741c1a7b1896a0c2f220b98a79c5d3f24e1845 (patch) | |
tree | 3c41e6444de2e1648df70b7d1c091e0adc318e09 /smoketest/scripts/cli/test_interfaces_l2tpv3.py | |
parent | dea5d4554250c908338c96107841caeeee3f2f3b (diff) | |
parent | 1c42ee9d16dd49fff2cbde652bf24a38f364526c (diff) | |
download | vyos-1x-87741c1a7b1896a0c2f220b98a79c5d3f24e1845.tar.gz vyos-1x-87741c1a7b1896a0c2f220b98a79c5d3f24e1845.zip |
Merge pull request #3857 from c-po/vrf-interface-part-2
interface: T6592: remove interface from conntrack ct_iface_map on deletion
Diffstat (limited to 'smoketest/scripts/cli/test_interfaces_l2tpv3.py')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_l2tpv3.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_l2tpv3.py b/smoketest/scripts/cli/test_interfaces_l2tpv3.py index af3d49f75..abc55e6d2 100755 --- a/smoketest/scripts/cli/test_interfaces_l2tpv3.py +++ b/smoketest/scripts/cli/test_interfaces_l2tpv3.py @@ -20,7 +20,7 @@ import unittest from base_interfaces_test import BasicInterfaceTest from vyos.utils.process import cmd - +from vyos.utils.kernel import unload_kmod class L2TPv3InterfaceTest(BasicInterfaceTest.TestCase): @classmethod def setUpClass(cls): @@ -62,7 +62,6 @@ if __name__ == '__main__': # reloaded on demand - not needed but test more and more features for module in ['l2tp_ip6', 'l2tp_ip', 'l2tp_eth', 'l2tp_eth', 'l2tp_netlink', 'l2tp_core']: - if os.path.exists(f'/sys/module/{module}'): - cmd(f'sudo rmmod {module}') + unload_kmod(module) unittest.main(verbosity=2) |