From 284e1dc35a87bbf48ea721a32caf1ea45f7dc06e Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Sun, 17 Mar 2024 12:18:51 -0400 Subject: [PATCH] deploy: Set custom redis config perms to 0640 We get an unsafe permissions warning otherwise. This mode matches the config files already in place. Signed-off-by: Russell Bryant --- deploy/ansible/redis/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/ansible/redis/tasks/main.yml b/deploy/ansible/redis/tasks/main.yml index 6f5aeeb7..3e9299f1 100644 --- a/deploy/ansible/redis/tasks/main.yml +++ b/deploy/ansible/redis/tasks/main.yml @@ -27,7 +27,7 @@ ansible.builtin.template: src: redis/templates/redis.local.conf.j2 dest: /etc/redis/redis.local.conf - mode: '0644' + mode: '0640' become: true - name: Start redis systemd service