Merge pull request #156 from qno/master

fixed insertion of multiple authorized keys via ssh_auth_pillar
This commit is contained in:
Niels Abspoel 2017-09-22 20:03:40 +02:00 committed by GitHub
commit e5e9cd8fcf

View File

@ -217,8 +217,9 @@ users_authorized_keys_{{ name }}:
{{ auth }} {{ auth }}
{% endfor -%} {% endfor -%}
{% else %} {% else %}
- contents: |
{%- for key_name, pillar_name in user['ssh_auth_pillar'].items() %} {%- for key_name, pillar_name in user['ssh_auth_pillar'].items() %}
- contents_pillar: {{ pillar_name }}:{{ key_name }}:pubkey {{ salt['pillar.get'](pillar_name + ':' + key_name + ':pubkey', '') }}
{%- endfor %} {%- endfor %}
{% endif %} {% endif %}
{% endif %} {% endif %}