From 61f5480c61f6122885529c094a76f39e6536f719 Mon Sep 17 00:00:00 2001 From: Gabriel Suarez Date: Tue, 16 Feb 2021 11:00:11 +0000 Subject: [PATCH] Fixed conditional --- tasks/install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/install.yml b/tasks/install.yml index 27cebcc..dd0f84f 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -10,5 +10,5 @@ apt: deb: "{{ papertrail_download_url }}/{{ papertrail_package_name }}" update_cache: true - force: "{{ False if papertrail_check_download_certs == True else papertrail_check_download_certs }}" + force: "{{ False if papertrail_check_download_certs | bool else papertrail_check_download_certs }}" when: ansible_os_family == "Debian"