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
1 changed files with 8 additions and 8 deletions

View File

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