Browse Source
Print the found version when it is incorrect (#10109)
Signed-off-by: Pat Riehecky <riehecky@fnal.gov>
pull/10035/head
Pat Riehecky
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
playbooks/ansible_version.yml
|
@ -10,7 +10,7 @@ |
|
|
tasks: |
|
|
tasks: |
|
|
- name: "Check {{ minimal_ansible_version }} <= Ansible version < {{ maximal_ansible_version }}" |
|
|
- name: "Check {{ minimal_ansible_version }} <= Ansible version < {{ maximal_ansible_version }}" |
|
|
assert: |
|
|
assert: |
|
|
msg: "Ansible must be between {{ minimal_ansible_version }} and {{ maximal_ansible_version }} exclusive" |
|
|
|
|
|
|
|
|
msg: "Ansible must be between {{ minimal_ansible_version }} and {{ maximal_ansible_version }} exclusive - you have {{ ansible_version.string }}" |
|
|
that: |
|
|
that: |
|
|
- ansible_version.string is version(minimal_ansible_version, ">=") |
|
|
- ansible_version.string is version(minimal_ansible_version, ">=") |
|
|
- ansible_version.string is version(maximal_ansible_version, "<") |
|
|
- ansible_version.string is version(maximal_ansible_version, "<") |
|
|