Skip to content
Snippets Groups Projects
Unverified Commit 57d70293 authored by Samuel's avatar Samuel Committed by GitHub
Browse files

ansible_maxversion_exclusive (#8919)

parent e4fe6799
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@
tasks:
- name: "Check {{ minimal_ansible_version }} <= Ansible version < {{ maximal_ansible_version }}"
assert:
msg: "Ansible must be between {{ minimal_ansible_version }} and {{ maximal_ansible_version }}"
msg: "Ansible must be between {{ minimal_ansible_version }} and {{ maximal_ansible_version }} exclusive"
that:
- ansible_version.string is version(minimal_ansible_version, ">=")
- ansible_version.string is version(maximal_ansible_version, "<")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment