verify_ansible_version.yml 375 B

1234567891011
  1. ---
  2. - name: Verify Ansible version is greater than or equal to 2.1.0.0
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. tasks:
  8. - name: Verify Ansible version is greater than or equal to 2.1.0.0
  9. fail:
  10. msg: "Unsupported ansible version: {{ ansible_version.full }} found"
  11. when: not ansible_version.full | version_compare('2.1.0.0', 'ge')