Release 10.5.0 #124

Manually merged
jlecour merged 46 commits from unstable into stable 2021-04-01 15:40:51 +02:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 3103af67a7 - Show all commits

View file

@ -31,6 +31,7 @@ The **patch** part changes incrementally at each release.
* minifirewall: change some defaults
* nagios-nrpe: update check_phpfpm_status.pl & install perl dependencies
* redis: use /run instead or /var/run
* redis: escape password in Munin configuration
### Fixed

View file

@ -4,5 +4,5 @@
env.title_prefix Instance {{ redis_instance_name }}
env.port {{ redis_port }}
{% if redis_password %}
env.password {{ redis_password }}
env.password {{ redis_password | replace("#", "\#") }}
{% endif %}