[Asterisk-Users] Logger rotate & master.csv

Patrick asterisk at puzzled.xs4all.nl
Tue May 23 01:50:19 MST 2006


On Tue, 2006-05-23 at 10:10 +0200, Asterisk wrote:
> Hi guys,
> 
>  
> 
> I have noticed that 'logger rotate' command only rotates log files in
> the /var/log/asterisk directory, but not in the subdirectories. How
> could I rotate my /var/log/asterisk/cdr-custom/Master.csv log file?

I use this script which lives in /etc/logrotate.d/ on my CentOS 4.3 box:

/var/log/asterisk/messages /var/log/asterisk/event_log /var/log/asterisk/queue_log /var/log/asterisk/h323_log /var/log/asterisk/cdr-custom/Master.csv {
    missingok
    notifempty
    create 0640 asterisk asterisk
    sharedscripts
    postrotate
	/usr/sbin/asterisk -rx 'logger rotate' >/dev/null 2>/dev/null || true
    endscript
}

Regards,
Patrick



More information about the asterisk-users mailing list