Skip to content
Snippets Groups Projects
Commit 8e1d91b3 authored by Adam Wright's avatar Adam Wright
Browse files

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

parent b77b198e
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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', []) -%}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment