systemd-networkd/templates/networkd.j2

13 lines
282 B
Plaintext
Raw Normal View History

2020-05-05 19:19:38 +03:00
# {{ ansible_managed }}
{% for section in item.content %}
{% for section_name, section_params in section.items() %}
[{{ section_name }}]
{% for item in section_params %}
{% for key, value in item.items() %}
{{ key }}={{ value }}
{% endfor %}
{% endfor %}
{% endfor %}
{% endfor %}