initial pfannkuchen
This commit is contained in:
parent
b6dafc7a73
commit
4d305fa19f
99 changed files with 3575 additions and 321 deletions
11
roles/pihole_dns/templates/custom.list.j2
Normal file
11
roles/pihole_dns/templates/custom.list.j2
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Von Ansible generiert – nicht manuell bearbeiten
|
||||
{% for host in groups['all'] %}
|
||||
{% if hostvars[host].ansible_host is defined %}
|
||||
{{ hostvars[host].ansible_host }} {{ host }}.{{ pihole_dns_domain }}
|
||||
{{ hostvars[host].ansible_host }} {{ host }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% for entry in pihole_extra_records %}
|
||||
{{ entry.ip }} {{ entry.name }}.{{ pihole_dns_domain }}
|
||||
{{ entry.ip }} {{ entry.name }}
|
||||
{% endfor %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue