homeserver/roles/mgrote_sealed_secrets/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

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