[mailman] Remove the logrotate config #2368

Merged
ryanlerch merged 1 commit from mailman_update into main 2024-11-12 12:42:20 +00:00
3 changed files with 0 additions and 41 deletions

View file

@ -1,6 +0,0 @@
/var/log/mailman3/*.log {
missingok
notifempty
delaycompress
su root apache
}

View file

@ -130,15 +130,6 @@
- logging
- mailman
- name: Mailman logging -- rotation
ansible.builtin.copy:
src: mailman3.logrotate.conf
dest: /etc/logrotate.d/mailman3
mode: "0644"
tags:
- logging
- mailman
- name: Ensuring mailman-core is started
ansible.builtin.service:
name: mailman3
@ -533,19 +524,6 @@
- systemd
- hyperkitty
#
# Logrotate
#
- name: Setup logrotate
ansible.builtin.template:
src: "mailman.logrotate.j2"
dest: /etc/logrotate.d/mailman
mode: "0644"
tags:
- logrotate
- config
#
# Scripts
#

View file

@ -1,13 +0,0 @@
{{ mailman_log_directory }}/*log {
daily
rotate 7
missingok
ifempty
compress
compresscmd /usr/bin/xz
uncompresscmd /usr/bin/xz
compressext .xz
dateext
sharedscripts
copytruncate
}