Fix some errors
This commit is contained in:
parent
bbf100ddfd
commit
89d265190b
3 changed files with 6 additions and 4 deletions
|
@ -28,12 +28,12 @@
|
||||||
- name: render knot zone files
|
- name: render knot zone files
|
||||||
template:
|
template:
|
||||||
src: var/lib/knot/master/zone.j2
|
src: var/lib/knot/master/zone.j2
|
||||||
dest: "/var/lib/knot/master/{{ zone.name }}"
|
dest: "/var/lib/knot/master/{{ zone.name }}zone"
|
||||||
owner: knot
|
owner: knot
|
||||||
group: knot
|
group: knot
|
||||||
mode: 0640
|
mode: 0640
|
||||||
vars:
|
vars:
|
||||||
zone: "hostvars[inventory_hostname]['knot_zone_' + item]"
|
zone: "{{ hostvars[inventory_hostname]['knot_zone_' + item.1] }}"
|
||||||
loop: "{{ knot_zone_groups | subelements('zones') }}"
|
loop: "{{ knot_zone_groups | subelements('zones') }}"
|
||||||
notify: reload knot
|
notify: reload knot
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,8 @@ template:
|
||||||
- id: {{ name }}
|
- id: {{ name }}
|
||||||
storage: {{ knot_zone_storage_path }}
|
storage: {{ knot_zone_storage_path }}
|
||||||
semantic-checks: {{ knot_zone_semantic_checks }}
|
semantic-checks: {{ knot_zone_semantic_checks }}
|
||||||
|
serial-policy: unixtime
|
||||||
|
zonefile-load: difference
|
||||||
dnssec-signing: {{ knot_zone_dnssec_signing }}
|
dnssec-signing: {{ knot_zone_dnssec_signing }}
|
||||||
dnssec-policy: dnssec-{{ name }}
|
dnssec-policy: dnssec-{{ name }}
|
||||||
acl: xfr-{{ name }}
|
acl: xfr-{{ name }}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
$TTL {{ zone.soa.ttl }}
|
$TTL {{ zone.soa.ttl }}
|
||||||
|
|
||||||
@ {{ zone.soa.class }} SOA {{ primary }} {{ zone.soa.rname }} (
|
@ {{ zone.soa.class }} SOA {{ zone.soa.primary }}. {{ zone.soa.rname }}. (
|
||||||
{{ ansible_date_time.epoch }} ; serial
|
{{ ansible_date_time.epoch }} ; serial
|
||||||
{{ zone.soa.refresh }} ; refresh
|
{{ zone.soa.refresh }} ; refresh
|
||||||
{{ zone.soa.retry }} ; retry
|
{{ zone.soa.retry }} ; retry
|
||||||
|
@ -11,6 +11,6 @@ $TTL {{ zone.soa.ttl }}
|
||||||
|
|
||||||
{% for r in zone.records %}
|
{% for r in zone.records %}
|
||||||
|
|
||||||
{{ r.name }} {{ r.ttl|default('') }} {{ r.class|default('') }} {{ r.type }} {{ r.content }}
|
{{ r.name }} {{ r.ttl|default('') }} {{ r.class|default('') }} {{ r.type }} {{ r.value }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue