paulbsd-salt/states/users/users.sls
Paul Lecuq 2e7242c9f3
All checks were successful
continuous-integration/drone/push Build is passing
linted states
2022-06-10 00:39:52 +02:00

32 lines
684 B
Plaintext

---
{%- from "users/map.jinja" import users with context -%}
{%- for name, user in users.items() %}
{%- if not user.enabled %}
user-{{ name }}:
user.absent:
- name: {{ name }}
{%- endif %}
{%- if user.enabled %}
user-{{ name }}:
user.present:
- name: {{ name }}
- fullname: {{ user.fullname }}
- shell: {{ user.shell }}
- home: {{ user.home }}
- password: {{ user.password }}
- hash_password: true
- gid: {{ user.gid }}
- allow_gid_change: true
{%- if user.optional_groups is defined %}
- optional_groups:
{%- for opt_group in user.optional_groups %}
- {{ opt_group }}
{%- endfor %}
{%- endif %}
{%- endif %}
{% endfor %}