From a8a89074636c4e38b9e89298b927582846b84518 Mon Sep 17 00:00:00 2001 From: DeadSwitch Date: Mon, 9 Feb 2026 14:18:40 +0100 Subject: [PATCH] Set the owner and group of the gitea binary. --- tasks/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tasks/main.yml b/tasks/main.yml index 54e05c5..cd21ab9 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -31,6 +31,8 @@ - name: Set the permissions of the Gitea binary ansible.builtin.file: path: /usr/local/bin/gitea + owner: root + group: "{{ gitea_group }}" mode: '0770' - name: Pause to generate and save the secrets in SOPS