Asterisk Logrotate: Difference between revisions
From KlavoWiki
Jump to navigationJump to search
Created page with 'If you would like to do a logrotate on your Asterisk files create the following file:<br> '''/etc/logrotate.d/asterisk''' <pre> /var/log/asterisk/messages /var/log/asterisk/*log …' |
No edit summary |
||
Line 4: | Line 4: | ||
/var/log/asterisk/messages /var/log/asterisk/*log { | /var/log/asterisk/messages /var/log/asterisk/*log { | ||
missingok | missingok | ||
rotate | notifempty | ||
rotate 52 | |||
weekly | weekly | ||
create 0640 root root | create 0640 root root |
Revision as of 00:49, 5 October 2010
If you would like to do a logrotate on your Asterisk files create the following file:
/etc/logrotate.d/asterisk
/var/log/asterisk/messages /var/log/asterisk/*log { missingok notifempty rotate 52 weekly create 0640 root root postrotate /usr/sbin/asterisk -rx 'logger reload' > /dev/null 2> /dev/null endscript }