From 0a5da80799bcbfb1ac6a810bda2ed3476468bc05 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Wed, 1 Oct 2025 10:01:17 +0200 Subject: [PATCH] feat: fix permissions semaphored dir --- tasks/install.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tasks/install.yaml b/tasks/install.yaml index f0f403b..7055425 100644 --- a/tasks/install.yaml +++ b/tasks/install.yaml @@ -4,8 +4,10 @@ - name: "create semaphore directories" ansible.builtin.file: path: "{{ item }}" + owner: "1001" + group: "1001" state: "directory" - mode: "0755" + mode: "0775" loop: - "/mnt/semaphore" - "/mnt/semaphore/data"