Thank you both for getting back to me.
It is a Vicidial installation with 2.2.0 and asterisk 1.2.30 , over ubuntu.
From scratch, upgraded using the instructions from vicibox to 2.2.0
Admin : VERSION: 2.2.0-236
BUILD: 100413-2328
Client : VERSION: 2.2.0-258 BUILD: 100413-1347
No telephony hardware.
I installed webmin over ubuntu, as additional software.
It seems to stop every night at the same time, and it seems to be related to the 6.45 am reboot.
this is the crontab from the installation which stops every night :
- Code: Select all
### reset several temporary-info tables in the database
2 1 * * * /usr/share/astguiclient/AST_reset_mysql_vars.pl
### optimize the database tables within the asterisk database
3 1 * * * /usr/share/astguiclient/AST_DB_optimize.pl
### VICIDIAL agent time log weekly summary report generation
2 0 * * 0 /usr/share/astguiclient/AST_agent_week.pl
### remove old recordings more than 7 days old
#24 0 * * * /usr/bin/find /var/spool/asterisk/monitorDONE -maxdepth 2 -type f -mtime +2 -print | xargs rm -f
### remove old vicidial logs and asterisk logs more than 2 days old
28 0 * * * /usr/bin/find /var/log/astguiclient -maxdepth 1 -type f -mtime +2 -print | xargs rm -f
29 0 * * * /usr/bin/find /var/log/asterisk -maxdepth 3 -type f -mtime +2 -print | xargs rm -f
### Reboot for good measure
45 6 * * * /sbin/reboot
18 1 * * * /etc/webmin/cron/tempdelete.pl
And this is the crontab from one out-of-the-vicibox installation, not updated. :
The only difference I was able to see was the last line :
- Code: Select all
18 1 * * * /etc/webmin/cron/tempdelete.pl
Does the problem resides here?
root@moon:~# crontab -e
GNU nano 2.0.7 File: /tmp/crontab.DPJJuB/crontab
### reset several temporary-info tables in the database
2 1 * * * /usr/share/astguiclient/AST_reset_mysql_vars.pl
### optimize the database tables within the asterisk database
3 1 * * * /usr/share/astguiclient/AST_DB_optimize.pl
### VICIDIAL agent time log weekly summary report generation
2 0 * * 0 /usr/share/astguiclient/AST_agent_week.pl
### remove old recordings more than 7 days old
#24 0 * * * /usr/bin/find /var/spool/asterisk/monitorDONE -maxdepth 2 -type f -mtime +2 -print | xargs rm -f
### remove old vicidial logs and asterisk logs more than 2 days old
28 0 * * * /usr/bin/find /var/log/astguiclient -maxdepth 1 -type f -mtime +2 -print | xargs rm -f
29 0 * * * /usr/bin/find /var/log/asterisk -maxdepth 3 -type f -mtime +2 -print | xargs rm -f
### Reboot for good measure
45 6 * * * /sbin/reboot
[/code]