fix(semaphore/collections): set collections dir owner to semaphore container uid (1001)

Host dir was owned by root (0755), blocking writes from uid=1001 inside
the container. Set owner to semaphore_container_uid=1001 so podman exec
can write collections into the bind-mount.
This commit is contained in:
Hermes Agent service account
2026-06-07 16:48:45 -05:00
parent 84e30c8ee2
commit d1ae5ba7a0
2 changed files with 6 additions and 1 deletions

View File

@@ -13,7 +13,7 @@
ansible.builtin.file:
path: "{{ semaphore_collections_dir }}"
state: directory
owner: root
owner: "{{ semaphore_container_uid }}"
group: root
mode: "0755"