mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-02 06:20:26 +08:00
11 lines
309 B
YAML
11 lines
309 B
YAML
---
|
|
- name: Verify Ansible version is greater than 1.8.0 and not 1.9.0
|
|
assert:
|
|
that:
|
|
- ansible_version | version_compare('1.8.0', 'ge')
|
|
- ansible_version | version_compare('1.9.0', 'ne')
|
|
- ansible_version | version_compare('1.9.0.1', 'ne')
|
|
|
|
- name: Gather OpenShift facts
|
|
openshift_facts:
|