From: Milan Verespej Date: Thu, 14 Feb 2019 13:21:14 +0000 (+0100) Subject: Fix wrong value for boolean X-Git-Tag: 6.0.0-ONAP~315 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=c8268a07122c7178095ee5005f3ac6f093c51777;p=oom%2Foffline-installer.git Fix wrong value for boolean Issue-ID: OOM-1629 Change-Id: I80ea6e72c9e5dbe3fdc63db0d177f541c749c58e Signed-off-by: Milan Verespej --- 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"