Merge pull request 'Cleanup logrotate configuration' (#41) from logrotate into master
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: Aurore/ansible#41
This commit is contained in:
commit
6104782a37
9 changed files with 65 additions and 61 deletions
4
log.yml
4
log.yml
|
@ -2,4 +2,8 @@
|
||||||
- hosts: log.adm.auro.re
|
- hosts: log.adm.auro.re
|
||||||
roles:
|
roles:
|
||||||
- rsyslog_collector
|
- rsyslog_collector
|
||||||
|
|
||||||
|
- hosts: all
|
||||||
|
roles:
|
||||||
|
- rsyslog_common
|
||||||
...
|
...
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
- name: reload logrotate
|
- name: Reload logrotate
|
||||||
service:
|
systemd:
|
||||||
name: logrotate
|
name: logrotate.service
|
||||||
state: reloaded
|
state: reloaded
|
||||||
|
...
|
||||||
|
|
|
@ -1,29 +1,28 @@
|
||||||
---
|
---
|
||||||
# Install and configure logrotate
|
|
||||||
|
|
||||||
# Install the apt package
|
|
||||||
- name: Install logrotate
|
- name: Install logrotate
|
||||||
apt:
|
apt:
|
||||||
name:
|
name: logrotate
|
||||||
- logrotate
|
state: present
|
||||||
|
|
||||||
# Copy the configuration and reload the service if it has changed
|
- name: Create rsyslog configuration directory
|
||||||
- name: Configure logrotate
|
file:
|
||||||
template:
|
path: /etc/rsyslog.d
|
||||||
src: logrotate.d/rsyslog.j2
|
|
||||||
dest: /etc/logrotate.d/rsyslog
|
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: "0644"
|
mode: u=rwx,g=rx,o=rx
|
||||||
notify: reload logrotate
|
|
||||||
|
- name: Configure logrotate
|
||||||
|
template:
|
||||||
|
src: logrotate.conf
|
||||||
|
dest: /etc/logrotate.conf
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: u=rwx,g=r,o=r
|
||||||
|
notify: Reload logrotate
|
||||||
|
|
||||||
# Make sure the service is enabled and started
|
|
||||||
- name: Enable logrotate service
|
- name: Enable logrotate service
|
||||||
service:
|
systemd:
|
||||||
name: logrotate
|
name: logrotate.service
|
||||||
enabled: true
|
enabled: true
|
||||||
state: started
|
state: started
|
||||||
|
...
|
||||||
# Enforce new logrotate rules now
|
|
||||||
- name: Run logrotate now
|
|
||||||
command: /usr/sbin/logrotate -f /etc/logrotate.d/rsyslog
|
|
||||||
|
|
7
roles/logrotate/templates/logrotate.conf
Normal file
7
roles/logrotate/templates/logrotate.conf
Normal file
|
@ -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
|
|
||||||
}
|
|
4
roles/rsyslog_common/meta/main.yml
Normal file
4
roles/rsyslog_common/meta/main.yml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
dependencies:
|
||||||
|
- role: logrotate
|
||||||
|
...
|
|
@ -51,6 +51,16 @@
|
||||||
mode: u=rw,g=r,o=r
|
mode: u=rw,g=r,o=r
|
||||||
notify: Restart systemd-journald
|
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
|
- name: Enable rsyslog service
|
||||||
become: true
|
become: true
|
||||||
systemd:
|
systemd:
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{{ ansible_managed | comment }}
|
{{ ansible_managed | comment }}
|
||||||
|
|
||||||
[Journal]
|
[Journal]
|
||||||
|
Storage=volatile
|
||||||
ForwardToSyslog=yes
|
ForwardToSyslog=yes
|
||||||
MaxLevelSyslog=debug
|
MaxLevelSyslog=debug
|
||||||
|
|
17
roles/rsyslog_common/templates/logrotate.j2
Normal file
17
roles/rsyslog_common/templates/logrotate.j2
Normal file
|
@ -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…
Reference in a new issue