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
_______________________________________________
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to