From 09a4823b77a09e5a3d6fa12700a1f8c60fdfb30b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?= Date: Thu, 6 Jul 2023 22:58:13 +0200 Subject: [PATCH] chore(standupbot): fix lints --- roles/standupbot/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/standupbot/tasks/main.yml b/roles/standupbot/tasks/main.yml index c32cf42..50c2a44 100644 --- a/roles/standupbot/tasks/main.yml +++ b/roles/standupbot/tasks/main.yml @@ -13,7 +13,7 @@ state: directory owner: standupbot group: standupbot - mode: 0755 + mode: "0755" - name: Ensure config file is up to date become: true @@ -22,7 +22,7 @@ dest: "{{ standupbot_base_path }}/config.json" owner: standupbot group: standupbot - mode: 0600 + mode: "0600" notify: restart-standupbot - name: Ensure password file is up to date @@ -32,7 +32,7 @@ dest: "{{ standupbot_config.PasswordFile }}" owner: standupbot group: standupbot - mode: 0600 + mode: "0600" notify: restart-standupbot - name: Ensure standupbot container is running