diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-08-18 12:47:31 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-08-18 12:59:14 +0200 |
commit | ef3f17d7e7fb34c5309e3b3e80c398f6b95cebb1 (patch) | |
tree | 0acede83ea3c2db80befebb3221026bd26e9b1ce /data | |
parent | 1cc2ac26106f8efad6defaba9ba4d1296d75cf1f (diff) | |
download | vyos-1x-ef3f17d7e7fb34c5309e3b3e80c398f6b95cebb1.tar.gz vyos-1x-ef3f17d7e7fb34c5309e3b3e80c398f6b95cebb1.zip |
bgp: T3759: fix indention when writing address-family config
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/frr/bgpd.frr.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/data/templates/frr/bgpd.frr.tmpl b/data/templates/frr/bgpd.frr.tmpl index f3579ccd7..51235e4cb 100644 --- a/data/templates/frr/bgpd.frr.tmpl +++ b/data/templates/frr/bgpd.frr.tmpl @@ -312,20 +312,20 @@ router bgp {{ local_as }} {{ 'vrf ' ~ vrf if vrf is defined and vrf is not none {% endif %} {% endif %} {% if afi_config.export is defined and afi_config.export.vpn is defined %} - export vpn + export vpn {% endif %} {% if afi_config.import is defined and afi_config.import is not none %} {% if afi_config.import.vpn is defined %} - import vpn + import vpn {% endif %} {% if afi_config.import.vrf is defined and afi_config.import.vrf is not none %} {% for vrf in afi_config.import.vrf %} - import vrf {{ vrf }} + import vrf {{ vrf }} {% endfor %} {% endif %} {% endif %} {% if afi_config.label is defined and afi_config.label.vpn is defined and afi_config.label.vpn.export is defined and afi_config.label.vpn.export is not none %} - label vpn export {{ afi_config.label.vpn.export }} + label vpn export {{ afi_config.label.vpn.export }} {% endif %} {% if afi_config.local_install is defined and afi_config.local_install is not none %} {% for interface in afi_config.local_install.interface %} |