ansible-roles/proftpd/templates/authorized_keys.j2
Mathieu Trossevin 101c282846
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good
proftpd: Fix format of public key files controlled by ansible
The comments used by ansible's blockinfile module break the format
expected by proftpd for public ssh keys, making them unusable.

Replace with a template, we will just have to accept that we need to use
ansible for all changes to these file.
2022-12-08 17:32:53 +01:00

4 lines
67 B
Django/Jinja

{%- for key in _proftpd_account.sshkeys %}
{{ key }}
{%- endfor %}