Auto delete recording
Posted: Mon Aug 20, 2012 6:42 am
Good Day ,
Can i change this on crontab
to make it delete recordings 30 days old rather than 7 days old? will it be like this?
will this also delete recordings in the ORIG folder?
Can i change this on crontab
- Code: Select all
### remove old recordings more than 7 days old
# 24 0 * * * /usr/bin/find /var/spool/asterisk/monitor -maxdepth 2 -type f -mtime +7 -print | xargs rm -f
to make it delete recordings 30 days old rather than 7 days old? will it be like this?
- Code: Select all
### remove old recordings more than 7 days old
# 24 0 * * * /usr/bin/find /var/spool/asterisk/monitor -maxdepth 2 -type f -mtime +30 -print | xargs rm -f
will this also delete recordings in the ORIG folder?