salt/states/users/init.sls
Joe Groocock 63e5df153d
Add users and ssh service
Signed-off-by: Joe Groocock <me@frebib.net>
2020-07-12 14:49:56 +01:00

20 lines
474 B
Plaintext

{%- import 'users/users.jinja' as users %}
{%- if users is not mapping %}
{%- do raise('users/users.jinja is malformed') %}
{%- endif %}
{%- for name, user in users %}
{{ name|json }}:
user.present:
usergroup: true
createhome: true
groups: {{ user.get('groups', [])|json }}
{%- if user.password is defined %}
password: {{ user.password|json }}
{%- endif %}
{%- if user.shell is defined %}
shell: {{ user.shell }}
{%- endif %}
{%- endfor %}