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
|
||||
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
|
||||
|
||||
# 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
|
||||
- name: Create rsyslog configuration directory
|
||||
file:
|
||||
path: /etc/rsyslog.d
|
||||
owner: root
|
||||
group: root
|
||||
mode: "0644"
|
||||
notify: reload logrotate
|
||||
mode: u=rwx,g=rx,o=rx
|
||||
|
||||
- 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
|
||||
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
|
||||
...
|
||||
|
|
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
|
||||
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
|
||||
|
|
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