Move all of the role here
This commit is contained in:
13
templates/named.conf.trust-anchors.j2
Normal file
13
templates/named.conf.trust-anchors.j2
Normal file
@@ -0,0 +1,13 @@
|
||||
{% macro trust_anchors(trust_anchors) %}
|
||||
trust-anchors {
|
||||
{% filter indent(2, true) %}
|
||||
{% for anchor in trust_anchors if trust_anchors is iterable %}
|
||||
{{ (anchor.name | string) -}}
|
||||
{{ (' ' + anchor.type) -}}
|
||||
{{ (' ' + anchor.flags | string) -}}
|
||||
{{ (' ' + anchor.protocol | string) -}}
|
||||
{{ (' ' + anchor.algorithm | string) -}}
|
||||
{{ (' "' + anchor.key + '"') -}};
|
||||
{% endfor %}
|
||||
{% endfilter %}};
|
||||
{% endmacro %}
|
||||
Reference in New Issue
Block a user