瀏覽代碼

Ensure ansible version greater than 1.9.4

Andrew Butcher 9 年之前
父節點
當前提交
010d49a2af
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      roles/openshift_facts/tasks/main.yml

+ 2 - 2
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: