summaryrefslogtreecommitdiff
path: root/data/templates/login/authorized_keys.tmpl
blob: 639a80e1d17b4d5a2a573d70ec91fd1f5e530ea5 (plain)
1
2
3
4
5
6
7
8
9
### Automatically generated by system-login.py ###

{% if authentication is defined and authentication.public_keys is defined and authentication.public_keys is not none %}
{%   for key, key_options in authentication.public_keys.items() %}
{# The whitespace after options is wisely chosen #}
{{ key_options.options + ' ' if key_options.options is defined }}{{ key_options.type }} {{ key_options.key }} {{ key }}
{%   endfor %}
{% endif %}