Release 22.12 #165

Merged
jlecour merged 76 commits from unstable into stable 2022-12-14 12:02:46 +01:00
2 changed files with 10 additions and 9 deletions
Showing only changes of commit fc52fbf4bc - Show all commits

View file

@ -17,14 +17,15 @@ The **patch** part changes is incremented if multiple releases happen the same m
### Changed
* evolinux-base: utils.yml can be excluded
* evolinux-todo: execute tasks only for Debian distribution (because this task is a dependency for others roles used on different distributions)
* evolinux-user: Add sudoers privilege for chck php\_fpm81
* java: use default JRE package when version is not specified
* lxc-solr: download URL according to Solr Version
* lxc-solr: detect the real partition options
* lxc-solr: download URL according to Solr Version
* lxc-solr: set homedir and port at install
* minifirewall: whitelist deb.freexian.com
* redis: some values should be quoted
* squid: whitelist deb.freexian.com
* evolinux-todo: execute tasks only for Debian distribution (because this task is a dependency for others roles used on different distributions)
### Fixed

View file

@ -1,24 +1,24 @@
daemonize yes
pidfile {{ redis_pid_dir }}/redis-server.pid
pidfile "{{ redis_pid_dir }}/redis-server.pid"
port {{ redis_port }}
bind {{ redis_bind_interfaces | join(' ') }}
{% if redis_socket_enabled %}
unixsocket {{ redis_socket_dir }}/redis.sock
unixsocket "{{ redis_socket_dir }}/redis.sock"
unixsocketperm {{ redis_socket_perms }}
{% endif %}
{% if redis_password %}
requirepass {{ redis_password }}
requirepass "{{ redis_password }}"
{% endif %}
{% if redis_password_master %}
masterauth {{ redis_password_master }}
masterauth "{{ redis_password_master }}"
{% endif %}
timeout {{ redis_timeout }}
loglevel {{ redis_log_level }}
logfile {{ redis_log_dir }}/redis-server.log
logfile "{{ redis_log_dir }}/redis-server.log"
# To enable logging to the system logger, just set 'syslog-enabled' to yes,
# and optionally update the other syslog parameters to suit your needs.
@ -33,8 +33,8 @@ save {{ save }}
{% endfor %}
rdbcompression {{ redis_rdbcompression | bool | ternary('yes','no') }}
dbfilename {{ redis_data_file }}
dir {{ redis_data_dir }}
dbfilename "{{ redis_data_file }}"
dir "{{ redis_data_dir }}"
{% if redis_installed_version is version('3.2', '>=') %}
protected-mode {{ redis_protected_mode | bool | ternary('yes','no') }}