diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-08-03 10:57:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-03 10:57:59 +0100 |
commit | f5b4f5e8536ebab6d1b513367fce414502bda375 (patch) | |
tree | 90cd13578afe63188dd09e2d6b48de3dacea8958 /src/conf_mode/interfaces_l2tpv3.py | |
parent | 1982aa3434d0133b5060d0a6df4e636dbf1b98fa (diff) | |
parent | 7c936988d61c8e31e56e73e975890024f0ece370 (diff) | |
download | vyos-1x-f5b4f5e8536ebab6d1b513367fce414502bda375.tar.gz vyos-1x-f5b4f5e8536ebab6d1b513367fce414502bda375.zip |
Merge pull request #3935 from vyos/mergify/bp/circinus/pr-3932
T6629: call check_kmod within a standard config function (backport #3932)
Diffstat (limited to 'src/conf_mode/interfaces_l2tpv3.py')
-rwxr-xr-x | src/conf_mode/interfaces_l2tpv3.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/conf_mode/interfaces_l2tpv3.py b/src/conf_mode/interfaces_l2tpv3.py index b9f827bee..f0a70436e 100755 --- a/src/conf_mode/interfaces_l2tpv3.py +++ b/src/conf_mode/interfaces_l2tpv3.py @@ -86,6 +86,8 @@ def generate(l2tpv3): return None def apply(l2tpv3): + check_kmod(k_mod) + # Check if L2TPv3 interface already exists if interface_exists(l2tpv3['ifname']): # L2TPv3 is picky when changing tunnels/sessions, thus we can simply @@ -102,7 +104,6 @@ def apply(l2tpv3): if __name__ == '__main__': try: - check_kmod(k_mod) c = get_config() verify(c) generate(c) |