Merge pull request 'Cleanup logrotate configuration' (#41) from logrotate into master
continuous-integration/drone/push Build is passing Details

Reviewed-on: Aurore/ansible#41
pull/44/head
jeltz 3 years ago
commit 6104782a37

@ -2,4 +2,8 @@
- hosts: log.adm.auro.re
roles:
- rsyslog_collector
- hosts: all
roles:
- rsyslog_common
...

@ -1,5 +1,6 @@
---
- name: reload logrotate
service:
name: logrotate
- name: Reload logrotate
systemd:
name: logrotate.service
state: reloaded
...

@ -1,29 +1,28 @@
---
# Install and configure logrotate
# Install the apt package
- name: Install logrotate
apt:
name:
- logrotate
name: logrotate
state: present
- name: Create rsyslog configuration directory
file:
path: /etc/rsyslog.d
owner: root
group: root
mode: u=rwx,g=rx,o=rx
# Copy the configuration and reload the service if it has changed
- name: Configure logrotate
template:
src: logrotate.d/rsyslog.j2
dest: /etc/logrotate.d/rsyslog
src: logrotate.conf
dest: /etc/logrotate.conf
owner: root
group: root
mode: "0644"
notify: reload logrotate
mode: u=rwx,g=r,o=r
notify: Reload logrotate
# Make sure the service is enabled and started
- name: Enable logrotate service
service:
name: logrotate
systemd:
name: logrotate.service
enabled: true
state: started
# Enforce new logrotate rules now
- name: Run logrotate now
command: /usr/sbin/logrotate -f /etc/logrotate.d/rsyslog
...

@ -0,0 +1,7 @@
{{ ansible_managed | comment }}
weekly
rotate 4
create
include /etc/logrotate.d

@ -1,39 +0,0 @@
# {{ ansible_managed }}
/var/log/syslog
{
rotate 7
daily
missingok
notifempty
delaycompress
compress
postrotate
/usr/lib/rsyslog/rsyslog-rotate
endscript
}
/var/log/mail.info
/var/log/mail.warn
/var/log/mail.err
/var/log/mail.log
/var/log/daemon.log
/var/log/kern.log
/var/log/auth.log
/var/log/user.log
/var/log/lpr.log
/var/log/cron.log
/var/log/debug
/var/log/messages
{
rotate 90
daily
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
/usr/lib/rsyslog/rsyslog-rotate
endscript
}

@ -0,0 +1,4 @@
---
dependencies:
- role: logrotate
...

@ -51,6 +51,16 @@
mode: u=rw,g=r,o=r
notify: Restart systemd-journald
- name: Deploy logrotate configuration
become: true
template:
src: logrotate.j2
dest: /etc/logrotate.d/rsyslog
owner: root
group: root
mode: u=rw,g=r,o=r
notify: Reload logrotate
- name: Enable rsyslog service
become: true
systemd:

@ -1,5 +1,6 @@
{{ ansible_managed | comment }}
[Journal]
Storage=volatile
ForwardToSyslog=yes
MaxLevelSyslog=debug

@ -0,0 +1,17 @@
{{ ansible_managed | comment }}
/var/log/auth.log
/var/log/mail.log
/var/log/kern.log
/var/log/syslog.log
{
rotate 7
daily
missingok
notifempty
delaycompress
compress
postrotate
/usr/lib/rsyslog/rsyslog-rotate
endscript
}
Loading…
Cancel
Save