bird: indent with spaces
This commit is contained in:
parent
aac9151280
commit
ea78f609b5
1 changed files with 8 additions and 8 deletions
|
@ -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 %}
|
||||||
|
|
Loading…
Reference in a new issue