diff options
author | Christian Breunig <christian@breunig.cc> | 2024-04-02 18:32:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-02 18:32:23 +0200 |
commit | 7ee2f016878ed29120baa66f8e1d372f97402c96 (patch) | |
tree | e480e1f12e0ca1dbe4c29fdccf213063ceda32a3 /src/conf_mode/protocols_nhrp.py | |
parent | 2a031e68cbe6b0e9beb6e57b2f93b4ec4d95c84f (diff) | |
parent | 0529371bc587e2fcdd8794061e9bb9d60c792c43 (diff) | |
download | vyos-1x-7ee2f016878ed29120baa66f8e1d372f97402c96.tar.gz vyos-1x-7ee2f016878ed29120baa66f8e1d372f97402c96.zip |
Merge pull request #3230 from c-po/syntax-cleanup
firewall: nat: policy: vrf: nft call syntax and import cleanup
Diffstat (limited to 'src/conf_mode/protocols_nhrp.py')
-rwxr-xr-x | src/conf_mode/protocols_nhrp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/protocols_nhrp.py b/src/conf_mode/protocols_nhrp.py index c339c6391..9f66407f2 100755 --- a/src/conf_mode/protocols_nhrp.py +++ b/src/conf_mode/protocols_nhrp.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2021-2023 VyOS maintainers and contributors +# Copyright (C) 2021-2024 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -93,7 +93,7 @@ def generate(nhrp): return None def apply(nhrp): - nft_rc = run(f'nft -f {nhrp_nftables_conf}') + nft_rc = run(f'nft --file {nhrp_nftables_conf}') if nft_rc != 0: raise ConfigError('Failed to apply NHRP tunnel firewall rules') |