Release 10.0.0 #100

Manually merged
jlecour merged 321 commits from unstable into stable 2020-05-13 11:25:49 +02:00
3 changed files with 12 additions and 1 deletions
Showing only changes of commit dc1c78e08a - Show all commits

View file

@ -62,6 +62,7 @@ The **patch** part changes incrementally at each release.
* php: add missing handler for php7.3-fpm
* roundcube: fix typo for roundcube vhost
* tomcat: fix typo for default tomcat_version
* evolinux-base: Fix our zsyslog rotate config that doesn't work on Debian 10
### Security

View file

@ -24,6 +24,12 @@
dest: /etc/logrotate.d/
when: evolinux_logs_logrotate_confs
- name: Copy rsyslog logrotate file
template:
src: logs/zsyslog.j2
dest: /etc/logrotate.d/zsyslog
when: evolinux_logs_logrotate_confs
- name: Configure logrotate.conf
replace:
dest: /etc/logrotate.conf

View file

@ -8,7 +8,11 @@ notifempty
delaycompress
compress
postrotate
{% if ansible_distribution_major_version | version_compare('10', '>=') %}
/usr/lib/rsyslog/rsyslog-rotate
{% else %}
invoke-rc.d rsyslog rotate > /dev/null
{% endif %}
endscript
/var/log/daemon.log
@ -32,4 +36,4 @@ endscript
{
daily
rotate 365
}
}