From 5ab6882f88036722f533f37331d9e5b63631f4b2 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Sun, 24 Jan 2021 15:35:38 +0100 Subject: bgp: T2347: bugfix import/export route-map There can be both an import and an export route-map - the Jinja2 template syntax only allowed one direction and not the other. --- data/templates/frr/bgp.frr.tmpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/data/templates/frr/bgp.frr.tmpl b/data/templates/frr/bgp.frr.tmpl index 2deee245d..cba62cce1 100644 --- a/data/templates/frr/bgp.frr.tmpl +++ b/data/templates/frr/bgp.frr.tmpl @@ -124,7 +124,8 @@ {% if config.address_family[af].route_map is defined and config.address_family[af].route_map is not none %} {% if config.address_family[af].route_map.export is defined and config.address_family[af].route_map.export is not none %} neighbor {{ neighbor }} route-map {{ config.address_family[af].route_map.export }} out -{% elif config.address_family[af].route_map.import is defined and config.address_family[af].route_map.import is not none %} +{% endif %} +{% if config.address_family[af].route_map.import is defined and config.address_family[af].route_map.import is not none %} neighbor {{ neighbor }} route-map {{ config.address_family[af].route_map.import }} in {% endif %} {% endif %} -- cgit v1.2.3