Skip to content
Snippets Groups Projects
Verified Commit 28c73cf5 authored by Mario Oenning's avatar Mario Oenning
Browse files

root_ssh: Add variable to define additional keys


Introduce "root_additional_keys" variable allowing us to deploy
additional root keys with our "root_ssh" role

Signed-off-by: default avatarmoson <moson@archlinux.org>
parent 5effc3f0
No related branches found
No related tags found
No related merge requests found
......@@ -9,3 +9,8 @@
{% endif %}
{% endif %}
{% endfor %}
{% if root_additional_keys is defined %}
{% for pubkey in root_additional_keys -%}
{{ lookup('file', role_path + '/../../pubkeys/' + pubkey ) }}
{% endfor %}
{% endif %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment