|
há 8 anos atrás | |
---|---|---|
.. | ||
meta | há 9 anos atrás | |
tasks | há 8 anos atrás | |
templates | há 9 anos atrás | |
tests | há 9 anos atrás | |
.travis.yml | há 9 anos atrás | |
README.md | há 9 anos atrás |
Installs logrotate and provides an easy way to setup additional logrotate scripts by specifying a list of directives.
None
logrotate_scripts: A list of logrotate scripts and the directives to use for the rotation.
logrotate_scripts:
- name: rails
path: "/srv/current/log/*.log"
options:
- weekly
- size 25M
- missingok
- compress
- delaycompress
- copytruncate
None
Setting up logrotate for additional Nginx logs, with postrotate script.
logrotate_scripts:
- name: nginx
path: /var/log/nginx/*.log
options:
- weekly
- size 25M
- rotate 7
- missingok
- compress
- delaycompress
- copytruncate
scripts:
postrotate: "[ -s /run/nginx.pid ] && kill USR1 `cat /run/nginx.pid`"
BSD
Find Nick Hammond on Twitter.