homeserver/roles/mgrote_zfs_health/tasks/user.yml
Michael Grote 7a24089031 fix linter errors (#584)
Reviewed-on: #584
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Co-committed-by: Michael Grote <michael.grote@posteo.de>
2023-10-25 22:26:17 +02:00

20 lines
452 B
YAML

---
- name: ensure group exists
become: true
ansible.builtin.group:
name: "{{ zfs_health_user_group }}"
state: present
when:
- zfs_health_user_group is defined
- name: ensure user exists
become: true
ansible.builtin.user:
name: "{{ zfs_health_user }}"
group: "{{ zfs_health_user_group }}"
shell: /usr/sbin/nologin
create_home: false
when:
- zfs_health_user_group is defined
- zfs_health_user is defined