From 2cfae265123525a4b1076b1b175344dcbd16a29b Mon Sep 17 00:00:00 2001 From: Anis FATHALLAH Date: Thu, 22 Sep 2022 17:57:45 +0400 Subject: [PATCH] fix atlas_dir permissions Signed-off-by: Anis FATHALLAH --- roles/deployment/cluster/tasks/nav2atlas.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/deployment/cluster/tasks/nav2atlas.yml b/roles/deployment/cluster/tasks/nav2atlas.yml index ce866254..0926701f 100644 --- a/roles/deployment/cluster/tasks/nav2atlas.yml +++ b/roles/deployment/cluster/tasks/nav2atlas.yml @@ -49,7 +49,7 @@ ansible.builtin.file: state: directory path: "{{ nav2atlas_dir }}" - mode: 700 + mode: 0700 owner: atlas group: atlas delegate_to: "{{ groups.atlas_atlas_server | first }}"