diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-01-29 15:16:54 -0500 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2016-01-29 15:20:57 -0500 |
commit | d77cad56ecf3408cac51b2a5e62065786a19e0e1 (patch) | |
tree | b8c39f0c638649fb76407ddc0290fe23bf0204a9 /roles/openshift_examples/tasks | |
parent | 102bf1217d493568bb37b77a1f1717cdad428b8e (diff) | |
download | openshift-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.yml | 2 |
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 |