Add Password if the state supports it.lookup-fix-3
@@ -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 -%} |