Real inital commit
This commit is contained in:
12
templates/networkd.j2
Normal file
12
templates/networkd.j2
Normal file
@@ -0,0 +1,12 @@
|
||||
# {{ 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 %}
|
4
templates/resolv.conf.j2
Normal file
4
templates/resolv.conf.j2
Normal file
@@ -0,0 +1,4 @@
|
||||
# {{ ansible_managed }}
|
||||
{% for item in networkd_resolver %}
|
||||
{{ item }}
|
||||
{% endfor %}
|
Reference in New Issue
Block a user