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 21 additions and 0 deletions
Showing only changes of commit 9bdd5ad9e7 - Show all commits

View file

@ -35,6 +35,7 @@ The **patch** part changes incrementally at each release.
* haproxy: chroot and socket path are configurable
* haproxy: adapt backports installed package list to distibution
* haproxy: split stats variables
* haproxy: rotate logs with date extension and immediate compression
* nginx: read server-status values before changing the config
* redis: create sudoers file if missing
* redis: new syntax for match filter

View file

@ -101,4 +101,24 @@
- haproxy
- config
- name: Rotate logs with dateext
lineinfile:
dest: /etc/logrotate.d/haproxy
line: ' dateext'
regexp: '^\s*#*\s*(no)?dateext'
insertbefore: '}'
tags:
- haproxy
- config
- name: Rotate logs with nodelaycompress
lineinfile:
dest: /etc/logrotate.d/haproxy
line: ' nodelaycompress'
regexp: '^\s*#*\s*(no)?delaycompress'
insertbefore: '}'
tags:
- haproxy
- config
- include: munin.yml