summaryrefslogtreecommitdiffstats
path: root/ansible/roles/application-install/tasks
diff options
context:
space:
mode:
authorMilan Verespej <m.verespej@partner.samsung.com>2019-02-14 14:21:14 +0100
committerMilan Verespej <m.verespej@partner.samsung.com>2019-02-14 14:23:37 +0100
commitc8268a07122c7178095ee5005f3ac6f093c51777 (patch)
tree608446d9c916165298f82bf757f87ae6844ee5b4 /ansible/roles/application-install/tasks
parent09b5d95763b2e80de02b949e7fb138f887cb0dea (diff)
Fix wrong value for boolean
Issue-ID: OOM-1629 Change-Id: I80ea6e72c9e5dbe3fdc63db0d177f541c749c58e Signed-off-by: Milan Verespej <m.verespej@partner.samsung.com>
Diffstat (limited to 'ansible/roles/application-install/tasks')
-rw-r--r--ansible/roles/application-install/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
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"