summaryrefslogtreecommitdiff
path: root/data/templates/frr/isisd.frr.tmpl
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-03-16 20:32:28 +0100
committerChristian Poessinger <christian@poessinger.com>2022-03-16 20:32:28 +0100
commit71805191d1e663af47ac1c2c11f7861d84677525 (patch)
tree18d19830c032ffeac6af78ee57cfd4a279efa9d1 /data/templates/frr/isisd.frr.tmpl
parenta5ae8f831fef4d7f9778f25c1c60e75d50c190ac (diff)
downloadvyos-1x-71805191d1e663af47ac1c2c11f7861d84677525.tar.gz
vyos-1x-71805191d1e663af47ac1c2c11f7861d84677525.zip
frr: T4302: fix Jinja2 template to match new FRR syntax
According to a wrong bug [1] there is no longer a vrf suffix available for interfaces. This got changed in [2] which no longer print vrf name for interface config when using vrf-lite. 1: https://github.com/FRRouting/frr/issues/10805 2: https://github.com/FRRouting/frr/pull/10411
Diffstat (limited to 'data/templates/frr/isisd.frr.tmpl')
-rw-r--r--data/templates/frr/isisd.frr.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/frr/isisd.frr.tmpl b/data/templates/frr/isisd.frr.tmpl
index b1e3f825b..c68dda443 100644
--- a/data/templates/frr/isisd.frr.tmpl
+++ b/data/templates/frr/isisd.frr.tmpl
@@ -1,7 +1,7 @@
!
{% if interface is defined and interface is not none %}
{% for iface, iface_config in interface.items() %}
-interface {{ iface }} {{ 'vrf ' + vrf if vrf is defined and vrf is not none }}
+interface {{ iface }}
ip router isis VyOS
ipv6 router isis VyOS
{% if iface_config.bfd is defined %}