Bugfix
This commit is contained in:
parent
a14b0fb04d
commit
a35e66049d
3 changed files with 6 additions and 3 deletions
|
@ -8,7 +8,7 @@ namespace: s3lph
|
||||||
name: nameserver
|
name: nameserver
|
||||||
|
|
||||||
# The version of the collection. Must be compatible with semantic versioning
|
# The version of the collection. Must be compatible with semantic versioning
|
||||||
version: "0.3.0"
|
version: "0.3.1"
|
||||||
|
|
||||||
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
||||||
readme: README.md
|
readme: README.md
|
||||||
|
|
|
@ -21,7 +21,7 @@ knot_zone_dnssec_signing: 'on'
|
||||||
|
|
||||||
knot_dnssec_policy_algorithm: ecdsap384sha384
|
knot_dnssec_policy_algorithm: ecdsap384sha384
|
||||||
knot_dnssec_policy_nsec3: 'on'
|
knot_dnssec_policy_nsec3: 'on'
|
||||||
knot_dnssec_policy_ksk_shared: 'off'
|
knot_dnssec_policy_ksk_shared: 'on'
|
||||||
knot_dnssec_policy_ksk_size: 384
|
knot_dnssec_policy_ksk_size: 384
|
||||||
knot_dnssec_policy_zsk_size: 384
|
knot_dnssec_policy_zsk_size: 384
|
||||||
knot_dnssec_policy_zsk_lifetime: 30d
|
knot_dnssec_policy_zsk_lifetime: 30d
|
||||||
|
|
|
@ -87,13 +87,16 @@ acl:
|
||||||
submission:
|
submission:
|
||||||
{% for zone in zones %}
|
{% for zone in zones %}
|
||||||
|
|
||||||
- id: submission: {{ zone.name }}
|
- id: submission-{{ zone.name }}
|
||||||
check-interval: {{ knot_dnssec_submission_check_interval }}
|
check-interval: {{ knot_dnssec_submission_check_interval }}
|
||||||
timeout: {{ knot_dnssec_submission_timeout }}
|
timeout: {{ knot_dnssec_submission_timeout }}
|
||||||
|
{% if zone.parents is defined and zone.parents | length > 0 %}
|
||||||
parent:
|
parent:
|
||||||
{% for parent in zone.parents | default([]) %}
|
{% for parent in zone.parents | default([]) %}
|
||||||
- {{ parent }}
|
- {{ parent }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% else %}
|
||||||
|
parent: []
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
policy:
|
policy:
|
||||||
|
|
Loading…
Reference in a new issue