diff options
author | OpenShift Bot <eparis+openshiftbot@redhat.com> | 2017-05-01 21:50:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-01 21:50:15 -0500 |
commit | 81cf5123366814d098b7ca169a6e4deb2759507d (patch) | |
tree | 3645c65a323896f8a9536983332cb6854e656ebf /roles/lib_openshift | |
parent | 4c2f899ac4f5ad183072e453ece4391ee456871f (diff) | |
parent | 717c36fde2639f6f3cc7bf534052e1df0479c2fe (diff) | |
download | openshift-81cf5123366814d098b7ca169a6e4deb2759507d.tar.gz openshift-81cf5123366814d098b7ca169a6e4deb2759507d.tar.bz2 openshift-81cf5123366814d098b7ca169a6e4deb2759507d.tar.xz openshift-81cf5123366814d098b7ca169a6e4deb2759507d.zip |
Merge pull request #3975 from sdodson/ansible_23_warnings
Merged by openshift-bot
Diffstat (limited to 'roles/lib_openshift')
-rwxr-xr-x | roles/lib_openshift/src/test/integration/oc_label.yml | 2 | ||||
-rwxr-xr-x | roles/lib_openshift/src/test/integration/oc_user.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/roles/lib_openshift/src/test/integration/oc_label.yml b/roles/lib_openshift/src/test/integration/oc_label.yml index b4e721407..22cf687c5 100755 --- a/roles/lib_openshift/src/test/integration/oc_label.yml +++ b/roles/lib_openshift/src/test/integration/oc_label.yml @@ -15,7 +15,7 @@ - name: ensure needed vars are defined fail: msg: "{{ item }} not defined" - when: "{{ item }} is not defined" + when: item is not defined with_items: - cli_master_test # ansible inventory instance to run playbook against diff --git a/roles/lib_openshift/src/test/integration/oc_user.yml b/roles/lib_openshift/src/test/integration/oc_user.yml index ad1f9d188..9b4290052 100755 --- a/roles/lib_openshift/src/test/integration/oc_user.yml +++ b/roles/lib_openshift/src/test/integration/oc_user.yml @@ -14,7 +14,7 @@ - name: ensure needed vars are defined fail: msg: "{{ item }} no defined" - when: "{{ item}} is not defined" + when: item is not defined with_items: - cli_master_test # ansible inventory instance to run playbook against |