bird: return -> accept/reject

This commit is contained in:
jeltz 2022-12-22 12:35:32 +01:00
parent ac9947c50f
commit 2db69a8f1c
Signed by: jeltz
GPG Key ID: 800882B66C0C3326
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ bgp_path.prepend({{ filter.as_prepend.asn }});
bgp_local_pref = {{ filter.local_pref }};
{% endif %}
{% if filter.accept is defined %}
return {{ filter.accept | ternary("true", "false") }};
{{ filter.accept | ternary("accept", "reject") }};
{% endif %}
{% endmacro %}