diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2022-01-11 01:10:59 +0100 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2022-01-11 14:49:12 +0100 |
commit | 6cf5767524b8519f86981943ab71ff288bf77d67 (patch) | |
tree | b0fb06a0d51ad6c3ed39bfc631642c62b61d52cf /data | |
parent | e389729f4de84ce3f32e1a0cdb471c919d7d7807 (diff) | |
download | vyos-1x-6cf5767524b8519f86981943ab71ff288bf77d67.tar.gz vyos-1x-6cf5767524b8519f86981943ab71ff288bf77d67.zip |
policy: T2199: Refactor policy route script for better error handling
* Migrates all policy route references from `ipv6-route` to `route6`
* Update test config `dialup-router-medium-vpn` to test migration of `ipv6-route` to `route6`
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/firewall/nftables-policy.tmpl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/data/templates/firewall/nftables-policy.tmpl b/data/templates/firewall/nftables-policy.tmpl index 668ec7388..484b6f203 100644 --- a/data/templates/firewall/nftables-policy.tmpl +++ b/data/templates/firewall/nftables-policy.tmpl @@ -1,5 +1,11 @@ #!/usr/sbin/nft -f +{% if cleanup_commands is defined %} +{% for command in cleanup_commands %} +{{ command }} +{% endfor %} +{% endif %} + include "/run/nftables_defines.conf" table ip mangle { |