1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_versioncheck.git synced 2024-08-16 15:59:49 +02:00
ansible_role_versioncheck/tasks/main.yml

9 lines
424 B
YAML
Raw Normal View History

---
- name: "check if ansible version is above {{ check_ansible_version }}"
assert:
2020-01-23 13:18:13 +01:00
that:
- "ansible_version.full is version_compare(check_ansible_version, '>=')"
fail_msg: "[ERROR] You need at least ansible version {{ check_ansible_version }}. Current Version: {{ ansible_version.full }}"
success_msg: "Congratulations. You are using ansible version {{ ansible_version.full }}"
2019-10-10 11:34:44 +02:00
delegate_to: localhost