diff options
author | Russell Teague <rteague@redhat.com> | 2016-12-07 16:11:27 -0500 |
---|---|---|
committer | Russell Teague <rteague@redhat.com> | 2016-12-08 13:20:01 -0500 |
commit | eca8a4176b0a85f116d2632289dc62009e2999ab (patch) | |
tree | 99ee8da3f7ca7e07389f78d6ba66f35bb57c40fe /playbooks/common | |
parent | 16749761a312894d8ba1101917b7ebf430616812 (diff) | |
download | openshift-eca8a4176b0a85f116d2632289dc62009e2999ab.tar.gz openshift-eca8a4176b0a85f116d2632289dc62009e2999ab.tar.bz2 openshift-eca8a4176b0a85f116d2632289dc62009e2999ab.tar.xz openshift-eca8a4176b0a85f116d2632289dc62009e2999ab.zip |
Removed verify_ansible_version playbook refs
Diffstat (limited to 'playbooks/common')
-rw-r--r-- | playbooks/common/openshift-cluster/upgrades/init.yml | 2 | ||||
-rw-r--r-- | playbooks/common/openshift-cluster/verify_ansible_version.yml | 11 |
2 files changed, 0 insertions, 13 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/init.yml b/playbooks/common/openshift-cluster/upgrades/init.yml index fbdb7900a..8cac2fb3b 100644 --- a/playbooks/common/openshift-cluster/upgrades/init.yml +++ b/playbooks/common/openshift-cluster/upgrades/init.yml @@ -1,6 +1,4 @@ --- -- include: ../verify_ansible_version.yml - - hosts: localhost connection: local become: no diff --git a/playbooks/common/openshift-cluster/verify_ansible_version.yml b/playbooks/common/openshift-cluster/verify_ansible_version.yml deleted file mode 100644 index 8be8fbf04..000000000 --- a/playbooks/common/openshift-cluster/verify_ansible_version.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- -- name: Verify Ansible version is greater than or equal to 2.2.0 - hosts: localhost - connection: local - become: no - gather_facts: no - tasks: - - name: Verify Ansible version is greater than or equal to 2.2.0 - fail: - msg: "Unsupported ansible version: {{ ansible_version.full }} found" - when: not ansible_version.full | version_compare('2.2.0', 'ge') |