homeserver/roles/mgrote.zfs_health/tasks/user.yml
mg 869131dabe change to script user: zfs_health (#253)
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Reviewed-on: mg/ansible#253
Co-authored-by: mg <michael.grote@posteo.de>
Co-committed-by: mg <michael.grote@posteo.de>
2021-11-24 11:54:31 +01:00

19 lines
461 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
when:
- zfs_health_user_group is defined
- zfs_health_user is defined