Move all of the role here

This commit is contained in:
Daniel Akulenok
2022-08-04 12:41:40 +02:00
commit 20a43d06bd
29 changed files with 1886 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{% macro keylist(keylists) %}
{% for keyname in keylists if keylists is iterable %}
key {{ keyname.name }} {
{% filter indent(2, true) %}
{{ ('algorithm ' + keyname.algorithm + ';\n') if keyname.algorithm is defined and keyname.algorithm -}}
{{ ('secret "' + keyname.secret + '";\n') if keyname.secret is defined and keyname.secret -}}
{% endfilter %}};
{% endfor %}
{% endmacro %}