Merge pull request #151 from ashokrajar/master
Add support for ssh_auth_sources.absent
This commit is contained in:
commit
9f82ad4e02
@ -73,6 +73,8 @@ users:
|
||||
# than inline in pillar, this works.
|
||||
ssh_auth_sources:
|
||||
- salt://keys/buser.id_rsa.pub
|
||||
ssh_auth_sources.absent:
|
||||
- salt://keys/deleteduser.id_rsa.pub # PUBLICKEY_FILE_TO_BE_REMOVED
|
||||
# Manage the ~/.ssh/config file
|
||||
ssh_known_hosts:
|
||||
importanthost:
|
||||
|
@ -278,6 +278,18 @@ users_ssh_auth_source_{{ name }}_{{ loop.index0 }}:
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if 'ssh_auth_sources.absent' in user %}
|
||||
{% for pubkey_file in user['ssh_auth_sources.absent'] %}
|
||||
users_ssh_auth_source_{{ name }}_{{ loop.index0 }}:
|
||||
ssh_auth.absent:
|
||||
- user: {{ name }}
|
||||
- source: {{ pubkey_file }}
|
||||
- require:
|
||||
- file: users_{{ name }}_user
|
||||
- user: users_{{ name }}_user
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if 'ssh_auth.absent' in user %}
|
||||
{% for auth in user['ssh_auth.absent'] %}
|
||||
users_ssh_auth_delete_{{ name }}_{{ loop.index0 }}:
|
||||
|
Loading…
Reference in New Issue
Block a user