bird: indent with spaces

This commit is contained in:
jeltz 2022-12-21 19:53:40 +01:00
parent aac9151280
commit ea78f609b5
Signed by: jeltz
GPG key ID: 800882B66C0C3326

View file

@ -30,22 +30,22 @@ protocol kernel kernel6 {
{% if bird__static_unreachable | ansible.utils.ipv4 %} {% if bird__static_unreachable | ansible.utils.ipv4 %}
protocol static unreachable4 { protocol static unreachable4 {
ipv4 { ipv4 {
export all; export all;
}; };
{% for route in bird__static_unreachable | ansible.utils.ipv4 %} {% for route in bird__static_unreachable | ansible.utils.ipv4 %}
route {{ route }} unreachable; route {{ route }} unreachable;
{% endfor %} {% endfor %}
} }
{% endif %} {% endif %}
{% if bird__static_unreachable | ansible.utils.ipv6 %} {% if bird__static_unreachable | ansible.utils.ipv6 %}
protocol static unreachable6 { protocol static unreachable6 {
ipv6 { ipv6 {
export all; export all;
}; };
{% for route in bird__static_unreachable | ansible.utils.ipv6 %} {% for route in bird__static_unreachable | ansible.utils.ipv6 %}
route {{ route }} unreachable; route {{ route }} unreachable;
{% endfor %} {% endfor %}
} }
{% endif %} {% endif %}