Release 10.2.0 #114

Manually merged
jlecour merged 103 commits from unstable into stable 2020-09-17 14:14:16 +02:00
2 changed files with 7 additions and 0 deletions
Showing only changes of commit 4cf438c8ff - Show all commits

View file

@ -18,6 +18,7 @@ The **patch** part changes incrementally at each release.
* haproxy: chroot and socket path are configurable
* redis: create sudoers file if missing
* redis: new syntax for match filter
* redis: raise an error is port 6379 is used in "instance" mode
### Fixed

View file

@ -1,5 +1,11 @@
---
- name: Verify Redis port
assert:
that:
- redis_port != 6379
msg: "If you want to use port 6379, use the default instance, not a named instance."
- name: "Instance '{{ redis_instance_name }}' group is present"
group:
name: "redis-{{ redis_instance_name }}"