Переглянути джерело

Merge pull request #61 from daschatten/master

Add 'ssh_auth_file' pillar key to generate an authorized_keys file from ...
lookup-fix-3
Florian Bittner 9 роки тому
джерело
коміт
d827b4fb86
2 змінених файлів з 15 додано та 0 видалено
  1. +4
    -0
      pillar.example
  2. +11
    -0
      users/init.sls

+ 4
- 0
pillar.example Переглянути файл

- PUBLICKEY - PUBLICKEY
ssh_auth.absent: ssh_auth.absent:
- PUBLICKEY_TO_BE_REMOVED - PUBLICKEY_TO_BE_REMOVED
# Generates an authorized_keys file for the user
# with the given keys
ssh_auth_file:
- PUBLICKEY
google_auth: google_auth:
ssh: | ssh: |
SOMEGAUTHHASHVAL SOMEGAUTHHASHVAL

+ 11
- 0
users/init.sls Переглянути файл

{% endfor %} {% endfor %}
{% endif %} {% endif %}


{% if 'ssh_auth_file' in user %}
{{ home }}/.ssh/authorized_keys:
file.managed:
- user: {{ name }}
- group: {{ name }}
- mode: 600
- contents: |
{% for auth in user.ssh_auth_file -%}
{{ auth }}
{% endfor -%}
{% endif %}


{% if 'ssh_auth' in user %} {% if 'ssh_auth' in user %}
{% for auth in user['ssh_auth'] %} {% for auth in user['ssh_auth'] %}

Завантаження…
Відмінити
Зберегти