main.yml 591 B

12345678910111213141516171819202122
  1. ---
  2. - name: Verify Ansible version is greater than 1.8.0 and not 1.9.0 and not 1.9.0.1
  3. assert:
  4. that:
  5. - ansible_version | version_compare('1.8.0', 'ge')
  6. - ansible_version | version_compare('1.9.0', 'ne')
  7. - ansible_version | version_compare('1.9.0.1', 'ne')
  8. - name: Ensure PyYaml is installed
  9. yum: pkg={{ item }} state=installed
  10. when: ansible_pkg_mgr == "yum"
  11. with_items:
  12. - PyYAML
  13. - name: Ensure PyYaml is installed
  14. dnf: pkg={{ item }} state=installed
  15. when: ansible_pkg_mgr == "dnf"
  16. with_items:
  17. - PyYAML
  18. - name: Gather Cluster facts
  19. openshift_facts: