Hello
my server delete recording that are older than 7 days.
I want to change this from 7 days ti 6 months.
How can i change this and where do i have to change this ?
This is my Crontab Script for monitorDONE
### remove old recordings more than 7 days old, and delete originals after 1 day
#24 0 * * * /usr/bin/find /var/spool/asterisk/monitorDONE -maxdepth 2 -type f -mtime +7 -print | xargs rm -f
24 1 * * * /usr/bin/find /var/spool/asterisk/monitorDONE/ORIG -maxdepth 2 -type f -mtime +1 -print | xargs rm -f
Thanks