From 64bcb2f51754bbc3de2ef3e87547460e15ae7019 Mon Sep 17 00:00:00 2001 From: pat-s Date: Sun, 3 Mar 2024 14:36:14 +0100 Subject: [PATCH] fix owner/group --- tasks/customize_public_files.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks/customize_public_files.yml b/tasks/customize_public_files.yml index 9cca35e..340ddfd 100644 --- a/tasks/customize_public_files.yml +++ b/tasks/customize_public_files.yml @@ -35,7 +35,8 @@ ansible.builtin.get_url: url: "{{ item.name }}" dest: "{{ gitea_custom }}/css/{{ item.name | basename }}" - owner: git + owner: "{{ gitea_user }}" + group: "{{ gitea_group }}" mode: "u=rwX,g=rX,o=" loop: "{{ gitea_custom_themes }}" notify: "Restart gitea"