mirror of
https://github.com/famedly/ansible-collection-base
synced 2024-11-10 06:24:17 +00:00
fix(redis): assert version correctly
This commit is contained in:
parent
5a011dff61
commit
450dc3f859
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
- name: "Assure redis version isn't too new"
|
||||
ansible.builtin.assert:
|
||||
that: "{{redis_version }} is version('7.2.4' '<=')"
|
||||
that: "'{{ redis_version }}' is version('7.2.4', '<=', version_type='semver')"
|
||||
ignore_errors: "{{ redis_allow_non_foss_yes_really }}"
|
||||
|
||||
- name: "Create redis user"
|
||||
|
|
Loading…
Reference in a new issue