Robert Kaussow
368ef22bff
All checks were successful
continuous-integration/drone/push Build is passing
58 lines
1.2 KiB
YAML
58 lines
1.2 KiB
YAML
---
|
|
logrotate_package: logrotate
|
|
logrotate_include_dir: /etc/logrotate.d
|
|
logrotate_options:
|
|
- weekly
|
|
- rotate 4
|
|
- create
|
|
- dateext
|
|
|
|
logrotate_config:
|
|
- name: syslog
|
|
definitions:
|
|
- logs:
|
|
- /var/log/cron
|
|
- /var/log/maillog
|
|
- /var/log/messages
|
|
- /var/log/secure
|
|
- /var/log/spooler
|
|
options:
|
|
- missingok
|
|
- sharedscripts
|
|
postrotate:
|
|
- /usr/bin/systemctl kill -s HUP rsyslog.service >/dev/null 2>&1 || true
|
|
|
|
- name: chrony
|
|
definitions:
|
|
- logs:
|
|
- /var/log/chrony/*.log
|
|
options:
|
|
- missingok
|
|
- nocreate
|
|
- sharedscripts
|
|
postrotate:
|
|
- /usr/bin/chronyc cyclelogs > /dev/null 2>&1 || true
|
|
|
|
- name: wtmp
|
|
definitions:
|
|
- logs:
|
|
- /var/log/wtmp
|
|
options:
|
|
- missingok
|
|
- monthly
|
|
- create 0664 root utmp
|
|
- minsize 1M
|
|
- rotate 1
|
|
|
|
- name: btmp
|
|
definitions:
|
|
- logs:
|
|
- /var/log/btmp
|
|
options:
|
|
- missingok
|
|
- monthly
|
|
- create 0600 root utmp
|
|
- rotate 1
|
|
|
|
logrotate_config_extra: []
|