Initial commit

This commit is contained in:
2019-03-09 00:31:38 +00:00
commit aa28efc5fc
10 changed files with 83 additions and 0 deletions

View File

@ -0,0 +1,9 @@
{% if unbound_forward_zones %}
forward-zone:
{% for zone in unbound_forward_zones %}
name: "{{ zone.name }}"
{% for addr in zone.forward_addr %}
forward-addr: {{ addr }}
{% endfor %}
{% endfor %}
{% endif %}