Project

General

Profile

delete recordings

Added by irene casipe almost 12 years ago

..how to delete recordings automatically in every 2 days..


Replies (1)

RE: delete recordings - Added by Demian Biscocho almost 12 years ago

This is a good reference: http://goautodial.org/boards/3/topics/266.

Edit your crontab entries by running:

#crontab -e

Look for the entry:

24 0 * * * /usr/bin/find /var/spool/asterisk/monitorDONE/ORIG/ -maxdepth 2 -type -mtime +7 -print | xargs rm -f

And change it to:

24 0 * * * /usr/bin/find /var/spool/asterisk/monitorDONE/ORIG/ -maxdepth 2 -type -mtime +2 -print | xargs rm -f

This will automatically delete 2 day old recordings in "/var/spool/asterisk/monitorDONE/ORIG/"

    (1-1/1)
    Go to top