
In case of complex configurations it might be required to support multiple routing tables and create policies for marking traffic. The patch implements `routing_rules` key for the systemd network which can be used for this purpose. Change-Id: I2632eb035e3fa78120660aaab7241fc541e03c63
10 lines
167 B
Django/Jinja
10 lines
167 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
{% for rule in item['routing_rules'] %}
|
|
[RoutingPolicyRule]
|
|
{% for key, val in rule.items() %}
|
|
{{ key }}={{ val }}
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|