From 825352ca0a06a843ecd2e3901a5de922ca13d8c2 Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Sat, 8 Sep 2018 00:36:43 +0200 Subject: [PATCH] etc-git: fix quotes --- etc-git/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc-git/tasks/main.yml b/etc-git/tasks/main.yml index 8a62fa73..d128a311 100644 --- a/etc-git/tasks/main.yml +++ b/etc-git/tasks/main.yml @@ -95,7 +95,7 @@ special_time: "hourly" user: root job: "who > /dev/null || git --git-dir=/etc/.git --work-tree=/etc status --short" - state: "{{ etc_git_monitor_status | bool | ternary("present","absent") }}" + state: "{{ etc_git_monitor_status | bool | ternary('present','absent') }}" tags: - etc-git @@ -106,6 +106,6 @@ hour: 21 minute: 21 job: "git --git-dir=/etc/.git --work-tree=/etc status --short" - state: "{{ etc_git_monitor_status | bool | ternary("present","absent") }}" + state: "{{ etc_git_monitor_status | bool | ternary('present','absent') }}" tags: - etc-git