From c1fbd5905363cfb2471282119a813e5a8f185957 Mon Sep 17 00:00:00 2001 From: Marcus Weiner Date: Thu, 5 Sep 2024 23:30:00 +0200 Subject: [PATCH] Try making lint fail --- core-router.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-router.j2 b/core-router.j2 index 3190660..012f140 100644 --- a/core-router.j2 +++ b/core-router.j2 @@ -34,7 +34,7 @@ endif %} {# static interface routes #} {%- for intf in device.interfaces.filter(untagged_vlan__isnull=False) %} {%- for pfx in ipam.Prefix.objects.filter(vlan_id=intf.untagged_vlan_id) %} -{%- if pfx.custom_field_data.get('use_interface_route', False) %} +{{- if pfx.custom_field_data.get('use_interface_route', False) %} set protocols static interface-route {{ pfx.prefix }} next-hop-interface {{ intf.name }} {%- if pfx.description %} description "{{ pfx.description }}"{% endif %} {%- endif %}