Merge pull request #28 from eedgar/master

Add Password if the state supports it.
This commit is contained in:
Seth House 2014-04-25 09:57:37 -07:00
commit 3746de7896
2 changed files with 4 additions and 0 deletions

View File

@ -6,6 +6,7 @@ users:
## Full list of pillar values ## Full list of pillar values
buser: buser:
fullname: B User fullname: B User
password: $6$w.............
home: /custom/buser home: /custom/buser
sudouser: True sudouser: True
sudo_rules: sudo_rules:

View File

@ -43,6 +43,9 @@ include:
{% if 'uid' in user -%} {% if 'uid' in user -%}
- uid: {{ user['uid'] }} - uid: {{ user['uid'] }}
{% endif -%} {% endif -%}
{% if 'password' in user -%}
- password: {{ user['password'] }}
{% endif -%}
{% if 'prime_group' in user and 'gid' in user['prime_group'] -%} {% if 'prime_group' in user and 'gid' in user['prime_group'] -%}
- gid: {{ user['prime_group']['gid'] }} - gid: {{ user['prime_group']['gid'] }}
{% else -%} {% else -%}