verify_ansible_version.yml 308 B

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