From 7237177e5a1f1f8a697658bdeffb8f09edab454b Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Wed, 23 Jun 2021 16:02:41 +0200 Subject: [PATCH] Fix the autofs.conf permissions. --- tasks/autofs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/autofs.yml b/tasks/autofs.yml index 193dbb5..3186dcf 100644 --- a/tasks/autofs.yml +++ b/tasks/autofs.yml @@ -28,9 +28,9 @@ option: '{{ item.option }}' value: '{{ item.value }}' state: '{{ item.state }}' - owner: '{{ gitea_user }}' - group: '{{ gitea_group }}' - mode: '0640' + owner: 'root' + group: 'root' + mode: '0644' create: no loop: '{{ autofs_conf_options }}'