From 9673f3371657a34896e21da198420d095751906c Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 15 Feb 2021 11:17:21 -0600 Subject: [PATCH] Try putting not inside brackets. --- tasks/miner/cron/ansible.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/miner/cron/ansible.yml b/tasks/miner/cron/ansible.yml index dae6644..3971727 100644 --- a/tasks/miner/cron/ansible.yml +++ b/tasks/miner/cron/ansible.yml @@ -16,7 +16,7 @@ minute: "7" job: "killall {{ item.name }}.sh" state: present - disabled: not {{ item.disabled | bool }} + disabled: {{ not item.disabled | bool }} loop: "{{ miners }}"