main.yml 668 B

123456789101112131415161718192021222324252627
  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: Determine if Atomic
  9. stat: path=/run/ostree-booted
  10. register: s
  11. changed_when: false
  12. - name: Init the is_atomic fact
  13. set_fact:
  14. is_atomic: false
  15. - name: Set the is_atomic fact
  16. set_fact:
  17. is_atomic: true
  18. when: s.stat.exists
  19. - name: Ensure PyYaml is installed
  20. action: "{{ ansible_pkg_mgr }} name=PyYAML state=present"
  21. - name: Gather Cluster facts
  22. openshift_facts: