mirror of
https://github.com/roles-ansible/ansible_role_gitea.git
synced 2024-08-16 11:39:50 +02:00
fix owner/group
This commit is contained in:
parent
373059fbf8
commit
64bcb2f517
1 changed files with 2 additions and 1 deletions
|
@ -35,7 +35,8 @@
|
||||||
ansible.builtin.get_url:
|
ansible.builtin.get_url:
|
||||||
url: "{{ item.name }}"
|
url: "{{ item.name }}"
|
||||||
dest: "{{ gitea_custom }}/css/{{ item.name | basename }}"
|
dest: "{{ gitea_custom }}/css/{{ item.name | basename }}"
|
||||||
owner: git
|
owner: "{{ gitea_user }}"
|
||||||
|
group: "{{ gitea_group }}"
|
||||||
mode: "u=rwX,g=rX,o="
|
mode: "u=rwX,g=rX,o="
|
||||||
loop: "{{ gitea_custom_themes }}"
|
loop: "{{ gitea_custom_themes }}"
|
||||||
notify: "Restart gitea"
|
notify: "Restart gitea"
|
||||||
|
|
Loading…
Reference in a new issue