Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- name: Check that Ansible version is at least 2.9
fail:
msg: "Ansible version must be at least 2.9, current version is {{ ansible_version.full }}"
when: ansible_version.full < "2.9.0"
when: not (ansible_version.full is version('2.9.0', '>='))
delegate_to: localhost
register: check_ansible
ignore_errors: yes
Expand Down