Asterisk Logrotate

From KlavoWiki
Revision as of 05:56, 30 September 2015 by David (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

If you would like to do a logrotate on your Asterisk files create the following file

vi /etc/logrotate.d/asterisk

Add the following contents.

/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
}