From 1838e7b8746d0d2ec2133783f786afb0473c60a7 Mon Sep 17 00:00:00 2001 From: Lee Goolsbee Date: Wed, 27 Mar 2024 10:08:27 -0500 Subject: [PATCH] enforce correct permissions on mounted filesystems attached to atl_product_home --- roles/bitbucket_mesh_config/tasks/mesh_setup.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/bitbucket_mesh_config/tasks/mesh_setup.yml b/roles/bitbucket_mesh_config/tasks/mesh_setup.yml index 3b99922..f309ba4 100644 --- a/roles/bitbucket_mesh_config/tasks/mesh_setup.yml +++ b/roles/bitbucket_mesh_config/tasks/mesh_setup.yml @@ -1,5 +1,5 @@ --- -- name: Create additional Bitbucket dirs if necessary +- name: Enforce correct permissions on mounted filesystems attached to atl_product_home ansible.builtin.file: path: "{{ item }}" owner: "{{ atl_product_user }}" @@ -8,6 +8,7 @@ state: directory recurse: no with_items: + - "{{ atl_product_home }}" - "{{ atl_product_home }}/caches" - "{{ atl_product_home }}/log"