summaryrefslogtreecommitdiffstats
path: root/roles/openshift_examples/tasks
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2016-01-29 15:16:54 -0500
committerScott Dodson <sdodson@redhat.com>2016-01-29 15:20:57 -0500
commitd77cad56ecf3408cac51b2a5e62065786a19e0e1 (patch)
treeb8c39f0c638649fb76407ddc0290fe23bf0204a9 /roles/openshift_examples/tasks
parent102bf1217d493568bb37b77a1f1717cdad428b8e (diff)
downloadopenshift-d77cad56ecf3408cac51b2a5e62065786a19e0e1.tar.gz
openshift-d77cad56ecf3408cac51b2a5e62065786a19e0e1.tar.bz2
openshift-d77cad56ecf3408cac51b2a5e62065786a19e0e1.tar.xz
openshift-d77cad56ecf3408cac51b2a5e62065786a19e0e1.zip
Fix missing bool filter
Diffstat (limited to 'roles/openshift_examples/tasks')
-rw-r--r--roles/openshift_examples/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_examples/tasks/main.yml b/roles/openshift_examples/tasks/main.yml
index 9a5eebc66..a5731be09 100644
--- a/roles/openshift_examples/tasks/main.yml
+++ b/roles/openshift_examples/tasks/main.yml
@@ -8,7 +8,7 @@
- name: Import RHEL streams
command: >
{{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ rhel_image_streams }}
- when: openshift_examples_load_rhel
+ when: openshift_examples_load_rhel | bool
register: oex_import_rhel_streams
failed_when: "'already exists' not in oex_import_rhel_streams.stderr and oex_import_rhel_streams.rc != 0"
changed_when: false