summaryrefslogtreecommitdiffstats
path: root/roles/openshift_facts
diff options
context:
space:
mode:
authorAndrew Butcher <abutcher@redhat.com>2016-04-28 14:50:30 -0400
committerAndrew Butcher <abutcher@redhat.com>2016-05-05 16:15:00 -0400
commit010d49a2afb215ad2ebcb79fc0591709690066ab (patch)
treee2b44444e1b52b526e486e11c2c5342a5745adc9 /roles/openshift_facts
parentb55268ba29f436a2ade9643adf195d23145d0826 (diff)
downloadopenshift-010d49a2afb215ad2ebcb79fc0591709690066ab.tar.gz
openshift-010d49a2afb215ad2ebcb79fc0591709690066ab.tar.bz2
openshift-010d49a2afb215ad2ebcb79fc0591709690066ab.tar.xz
openshift-010d49a2afb215ad2ebcb79fc0591709690066ab.zip
Ensure ansible version greater than 1.9.4
Diffstat (limited to 'roles/openshift_facts')
-rw-r--r--roles/openshift_facts/tasks/main.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_facts/tasks/main.yml b/roles/openshift_facts/tasks/main.yml
index ff726ae24..ce410d1d5 100644
--- a/roles/openshift_facts/tasks/main.yml
+++ b/roles/openshift_facts/tasks/main.yml
@@ -1,8 +1,8 @@
---
-- name: Verify Ansible version is greater than or equal to 1.9.4 and less than 2.0
+- name: Verify Ansible version is greater than or equal to 1.9.4
fail:
msg: "Unsupported ansible version: {{ ansible_version }} found"
- when: ansible_version.full | version_compare('1.9.4', 'lt') or ansible_version.full | version_compare('2.0', 'ge')
+ when: not ansible_version.full | version_compare('1.9.4', 'ge')
- name: Detecting Operating System
stat: