Merge pull request #28 from eedgar/master
Add Password if the state supports it.
This commit is contained in:
commit
3746de7896
@ -6,6 +6,7 @@ users:
|
||||
## Full list of pillar values
|
||||
buser:
|
||||
fullname: B User
|
||||
password: $6$w.............
|
||||
home: /custom/buser
|
||||
sudouser: True
|
||||
sudo_rules:
|
||||
|
@ -43,6 +43,9 @@ include:
|
||||
{% if 'uid' in user -%}
|
||||
- uid: {{ user['uid'] }}
|
||||
{% endif -%}
|
||||
{% if 'password' in user -%}
|
||||
- password: {{ user['password'] }}
|
||||
{% endif -%}
|
||||
{% if 'prime_group' in user and 'gid' in user['prime_group'] -%}
|
||||
- gid: {{ user['prime_group']['gid'] }}
|
||||
{% else -%}
|
||||
|
Loading…
Reference in New Issue
Block a user