소스 검색

added option to remove ssh public keys from auth (ssh_auth.absent)

tags/v0.45.0
7oku 10 년 전
부모
커밋
4a8393dca9
2개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      pillar.example
  2. +11
    -0
      users/init.sls

+ 2
- 0
pillar.example 파일 보기

@@ -24,6 +24,8 @@ users:
pubkey: PUBLICKEY
ssh_auth:
- PUBLICKEY
ssh_auth.absent:
- PUBLICKEY_TO_BE_REMOVED

## Absent user
cuser:

+ 11
- 0
users/init.sls 파일 보기

@@ -123,6 +123,17 @@ ssh_auth_{{ name }}_{{ loop.index0 }}:
{% endfor %}
{% endif %}

{% if 'ssh_auth.absent' in user %}
{% for auth in user['ssh_auth.absent'] %}
ssh_auth_delete_{{ name }}_{{ loop.index0 }}:
ssh_auth.absent:
- user: {{ name }}
- name: {{ auth }}
- require:
- file: {{ name }}_user
- user: {{ name }}_user
{% endfor %}
{% endif %}

{% if 'sudouser' in user and user['sudouser'] %}
{% if not used_sudo %}

Loading…
취소
저장