Merge pull request #46 from hipikat/master

Add 'createhome' option for 'user.present' state
This commit is contained in:
Nitin Madhok 2014-09-07 01:33:04 -04:00
commit 55d7912363
2 changed files with 4 additions and 0 deletions

View File

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

View File

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