67afb71160
* delete trailing whitespace * Add gitea_group This will add the `gitea_group: gitea` and will probably RESOLVE https://github.com/thomas-maurice/ansible-role-gitea/issues/70 * update variable length update variable length to make this role idempotent * vars should not include special character
12 lines
243 B
YAML
12 lines
243 B
YAML
---
|
|
- name: "Create Gitea Group"
|
|
group:
|
|
name: "{{ gitea_group }}"
|
|
state: present
|
|
|
|
- name: "Create Gitea user"
|
|
user:
|
|
name: "{{ gitea_user }}"
|
|
comment: "Gitea user"
|
|
home: "{{ gitea_home }}"
|
|
shell: "{{ gitea_shell }}"
|