summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-11-27 10:32:01 +0100
committerChristian Poessinger <christian@poessinger.com>2021-11-27 10:32:01 +0100
commit32725123a2e98f3f417a94e4646721e97be1eaca (patch)
tree9c9d0ffa522d29d52f3d8abfc0d890836f2a2074 /data
parentea3c7785d06ed341487efb800c141fa7a7797ba7 (diff)
downloadvyos-1x-32725123a2e98f3f417a94e4646721e97be1eaca.tar.gz
vyos-1x-32725123a2e98f3f417a94e4646721e97be1eaca.zip
bfd: T3753: adjust to new FRR 8.1 syntax
Every node in running config now has an explicit "exit" tag.
Diffstat (limited to 'data')
-rw-r--r--data/templates/frr/bfdd.frr.tmpl11
1 files changed, 7 insertions, 4 deletions
diff --git a/data/templates/frr/bfdd.frr.tmpl b/data/templates/frr/bfdd.frr.tmpl
index 3fb1f47d6..c14939677 100644
--- a/data/templates/frr/bfdd.frr.tmpl
+++ b/data/templates/frr/bfdd.frr.tmpl
@@ -1,4 +1,4 @@
-!
+{% if profile is defined or peer is defined %}
bfd
{% if profile is defined and profile is not none %}
{% for profile_name, profile_config in profile.items() %}
@@ -18,7 +18,8 @@ bfd
{% else %}
no shutdown
{% endif %}
- exit
+ exit
+ !
{% endfor %}
{% endif %}
{% if peer is defined and peer is not none %}
@@ -38,8 +39,10 @@ bfd
{% else %}
no shutdown
{% endif %}
- exit
+ exit
+ !
{% endfor %}
{% endif %}
- end
+exit
!
+{% endif %}