소스 검색

Add 'createhome' option for 'user.present' state

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

+ 1
- 0
pillar.example 파일 보기

@@ -8,6 +8,7 @@ users:
fullname: B User
password: $6$w.............
home: /custom/buser
createhome: True
sudouser: True
sudo_rules:
- ALL=(root) /usr/bin/find

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

@@ -55,6 +55,9 @@
{% if 'fullname' in user %}
- fullname: {{ user['fullname'] }}
{% endif -%}
{% if not user.get('createhome', True) %}
- createhome: False
{% endif %}
- groups:
- {{ user_group }}
{% for group in user.get('groups', []) -%}

Loading…
취소
저장