From c8268a07122c7178095ee5005f3ac6f093c51777 Mon Sep 17 00:00:00 2001 From: Milan Verespej Date: Thu, 14 Feb 2019 14:21:14 +0100 Subject: Fix wrong value for boolean Issue-ID: OOM-1629 Change-Id: I80ea6e72c9e5dbe3fdc63db0d177f541c749c58e Signed-off-by: Milan Verespej --- ansible/roles/application-install/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ansible/roles/application-install/tasks') diff --git a/ansible/roles/application-install/tasks/main.yml b/ansible/roles/application-install/tasks/main.yml index 89e7ef7e..ba522792 100644 --- a/ansible/roles/application-install/tasks/main.yml +++ b/ansible/roles/application-install/tasks/main.yml @@ -12,7 +12,7 @@ register: charts_files - name: Set install active fact set_fact: - install_needed: "{{ yes if charts_files.matched | int > 0 else no }}" + install_needed: "{{ true if charts_files.matched | int > 0 else false }}" when: phase == "pre-install" - include_tasks: "{{ phase }}.yml" -- cgit 1.2.3-korg