Release 10.0.0 #100

Manually merged
jlecour merged 321 commits from unstable into stable 2020-05-13 11:25:49 +02:00
2 changed files with 11 additions and 0 deletions
Showing only changes of commit 415aedb78a - Show all commits

View file

@ -48,3 +48,5 @@ redis_restart_if_needed: True
redis_restart_force: False
redis_disabled_commands: []
redis_sentinel_install: False

View file

@ -14,6 +14,15 @@
- redis
- packages
- name: Redis Sentinel is installed.
apt:
name: "redis-sentinel"
state: present
tags:
- redis
- packages
when: redis_sentinel_install
- name: Get Redis version
shell: "redis-server -v | grep -Eo '(v=\\S+)' | cut -d'=' -f 2 | grep -E '^([0-9]|\\.)+$'"
changed_when: false