From 2ab21a87f5f50e04a1a915cfea76c6be176fd464 Mon Sep 17 00:00:00 2001 From: Timo Makinen Date: Wed, 29 May 2019 19:35:51 +0300 Subject: [PATCH] allow all users to runtime directory --- roles/gunicorn/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/gunicorn/tasks/main.yml b/roles/gunicorn/tasks/main.yml index e613e34..c2a02e9 100644 --- a/roles/gunicorn/tasks/main.yml +++ b/roles/gunicorn/tasks/main.yml @@ -13,14 +13,14 @@ file: dest: /run/gunicorn state: directory - mode: 0770 + mode: 0775 owner: root group: gunicorn - name: create tmpfiles config copy: dest: /etc/tmpfiles.d/gunicorn.conf - content: "d /run/gunicorn 770 root gunicorn\n" + content: "d /run/gunicorn 775 root gunicorn\n" mode: 0644 owner: root group: "{{ ansible_wheel }}"