diff options
author | John Estabrook <jestabro@vyos.io> | 2024-08-01 19:18:36 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2024-08-02 08:59:41 -0500 |
commit | 95eef73f1b002c8b9e8e769135ffed50c8ca6890 (patch) | |
tree | 98bef2bc1fa8db0817eb4493ed971fe819a597c3 /src/conf_mode/interfaces_wireguard.py | |
parent | 0f66f4a84deee3da1b164c30dbe221105b424659 (diff) | |
download | vyos-1x-95eef73f1b002c8b9e8e769135ffed50c8ca6890.tar.gz vyos-1x-95eef73f1b002c8b9e8e769135ffed50c8ca6890.zip |
T6629: call check_kmod within a standard config function
Move the remaining calls to check_kmod within a standard function,
with placement determined by the needs of the config script.
Diffstat (limited to 'src/conf_mode/interfaces_wireguard.py')
-rwxr-xr-x | src/conf_mode/interfaces_wireguard.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/conf_mode/interfaces_wireguard.py b/src/conf_mode/interfaces_wireguard.py index 0e0b77877..482da1c66 100755 --- a/src/conf_mode/interfaces_wireguard.py +++ b/src/conf_mode/interfaces_wireguard.py @@ -104,6 +104,8 @@ def verify(wireguard): public_keys.append(peer['public_key']) def apply(wireguard): + check_kmod('wireguard') + if 'rebuild_required' in wireguard or 'deleted' in wireguard: wg = WireGuardIf(**wireguard) # WireGuard only supports peer removal based on the configured public-key, @@ -123,7 +125,6 @@ def apply(wireguard): if __name__ == '__main__': try: - check_kmod('wireguard') c = get_config() verify(c) apply(c) |