homeserver/friedhof/mgrote_sealed_secrets/tasks/user.yml
Michael Grote e8d7c61ff2 Abbau k3s4 (#607)
Reviewed-on: #607
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Co-committed-by: Michael Grote <michael.grote@posteo.de>
2023-11-21 21:20:53 +01:00

19 lines
447 B
YAML

---
- name: ensure group exists
become: true
ansible.builtin.group:
name: "{{ sealed_secrets_user_group }}"
state: present
when:
- sealed_secrets_user_group is defined
- name: ensure user exists
become: true
ansible.builtin.user:
name: "{{ sealed_secrets_user }}"
group: "{{ sealed_secrets_user_group }}"
create_home: false
when:
- sealed_secrets_user_group is defined
- sealed_secrets_user is defined