diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2023-03-23 14:55:05 +0100 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2023-03-23 14:55:05 +0100 |
commit | 62875954a6679e1124cd727187f64bd37ec4678f (patch) | |
tree | aca5880a376ce88746583b95c4bee7168d5bd1d5 /src/conf_mode | |
parent | 98940e92d5c75d9f112a19e3f12ac1d4a257667c (diff) | |
download | vyos-1x-62875954a6679e1124cd727187f64bd37ec4678f.tar.gz vyos-1x-62875954a6679e1124cd727187f64bd37ec4678f.zip |
ipsec: T2816: Cleanup dhcp hook file if not required
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-x | src/conf_mode/vpn_ipsec.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/conf_mode/vpn_ipsec.py b/src/conf_mode/vpn_ipsec.py index d207c63df..63887b278 100755 --- a/src/conf_mode/vpn_ipsec.py +++ b/src/conf_mode/vpn_ipsec.py @@ -549,6 +549,8 @@ def generate(ipsec): if ipsec['dhcp_no_address']: with open(DHCP_HOOK_IFLIST, 'w') as f: f.write(" ".join(ipsec['dhcp_no_address'].values())) + elif os.path.exists(DHCP_HOOK_IFLIST): + os.unlink(DHCP_HOOK_IFLIST) for path in [swanctl_dir, CERT_PATH, CA_PATH, CRL_PATH, PUBKEY_PATH]: if not os.path.exists(path): |