redis: escape password in Munin configuration
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jérémy Lecour 2021-03-09 18:24:15 +01:00 committed by Jérémy Lecour
parent 3cb18faf28
commit 3103af67a7
2 changed files with 2 additions and 1 deletions

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 %}