diff options
| author | Alex Kudentsov <43482574+alexk37@users.noreply.github.com> | 2026-03-14 15:20:45 +0700 |
|---|---|---|
| committer | Alex Kudentsov <43482574+alexk37@users.noreply.github.com> | 2026-03-14 15:20:45 +0700 |
| commit | 641825aaa26ba95a2ad73027d050276f0f336e69 (patch) | |
| tree | b5dd06b385a27765786e03178360698ef6cbb420 /data/templates | |
| parent | 89e695ef20646826ae63e704275317cde18f0d51 (diff) | |
| download | vyos-1x-641825aaa26ba95a2ad73027d050276f0f336e69.tar.gz vyos-1x-641825aaa26ba95a2ad73027d050276f0f336e69.zip | |
T8383: fix extra space in nftables ipv6 output chain
Diffstat (limited to 'data/templates')
| -rwxr-xr-x | data/templates/firewall/nftables.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/firewall/nftables.j2 b/data/templates/firewall/nftables.j2 index 903fae330..e3d5b20e8 100755 --- a/data/templates/firewall/nftables.j2 +++ b/data/templates/firewall/nftables.j2 @@ -281,7 +281,7 @@ table ip6 vyos_filter { {% for rule_id, rule_conf in conf.rule.items() if rule_conf.disable is not vyos_defined %} {{ rule_conf | nft_rule('OUT', prior, rule_id, 'ip6') }} {% if rule_conf.recent is vyos_defined %} -{% set ns.sets = ns.sets + ['OUT_ ' + prior + '_' + rule_id] %} +{% set ns.sets = ns.sets + ['OUT_' + prior + '_' + rule_id] %} {% endif %} {% endfor %} {% endif %} |
