mg
651164f26f
Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#294 Co-authored-by: mg <michael.grote@posteo.de> Co-committed-by: mg <michael.grote@posteo.de>
14 lines
295 B
YAML
14 lines
295 B
YAML
---
|
|
- name: "Create Gitea Group"
|
|
group:
|
|
name: "{{ gitea_group }}"
|
|
system: true
|
|
state: "present"
|
|
|
|
- name: "Create Gitea user"
|
|
ansible.builtin.user:
|
|
name: "{{ gitea_user }}"
|
|
comment: "Gitea user"
|
|
home: "{{ gitea_home }}"
|
|
shell: "{{ gitea_shell }}"
|
|
system: true
|