diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-07-18 14:10:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-18 14:10:59 -0400 |
commit | 46ff071b63bc917a00922b4f93b149d9b334f92c (patch) | |
tree | d1528d019e5a1d9f661c89691533dd0d8877f1f0 /roles/openshift_facts/tasks | |
parent | 08791978fdf3ee385760761d4fc6bc47febf1732 (diff) | |
parent | 856e47e3a0dc21d680c0e6289c2c16575fd64bee (diff) | |
download | openshift-46ff071b63bc917a00922b4f93b149d9b334f92c.tar.gz openshift-46ff071b63bc917a00922b4f93b149d9b334f92c.tar.bz2 openshift-46ff071b63bc917a00922b4f93b149d9b334f92c.tar.xz openshift-46ff071b63bc917a00922b4f93b149d9b334f92c.zip |
Merge pull request #1992 from abutcher/ansible-2
Require ansible-2.1.0.0+
Diffstat (limited to 'roles/openshift_facts/tasks')
-rw-r--r-- | roles/openshift_facts/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/openshift_facts/tasks/main.yml b/roles/openshift_facts/tasks/main.yml index c3723672d..2aca35ce1 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 +- name: Verify Ansible version is greater than or equal to 2.1.0.0 fail: - msg: "Unsupported ansible version: {{ ansible_version }} found" - when: not ansible_version.full | version_compare('1.9.4', 'ge') + msg: "Unsupported ansible version: {{ ansible_version.full }} found" + when: not ansible_version.full | version_compare('2.1.0.0', 'ge') - name: Detecting Operating System stat: |