ispCP - Board - Support
cron.d/ispcp - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Support Area (/forum-30.html)
+--- Forum: System Setup & Installation (/forum-32.html)
+--- Thread: cron.d/ispcp (/thread-3534.html)



cron.d/ispcp - antonypuckey - 06-16-2008 04:51 PM

Hi there,

What is this file meant to look like after install? My one for RC5 seems to have all the template options in it still and none of the things in there are actually running.

Code:
# crontab /etc/cron.d/ispcp
"/etc/cron.d/ispcp":25: bad minute
errors in crontab file, can't install.

[Snip]
Code:
# customer logs
@daily root {TOOLS_ROOT_DIR}/ispcp-httpd-logs-mngr &>{LOG_DIR}/ispcp-httpd-logs-mngr.log

# Backup
@daily root {BACKUP_ROOT_DIR}/ispcp-backup-all yes &>{LOG_DIR}/ispcp-backup-all-mngr.log
@daily root {BACKUP_ROOT_DIR}/ispcp-backup-ispcp noreport &>{LOG_DIR}/ispcp-backup-ispcp-mngr.log
[/Snip]


RE: cron.d/ispcp - sci2tech - 06-16-2008 07:22 PM

No it should look like:
Code:
# customer logs
@daily root /var/www/ispcp/engine/tools/ispcp-httpd-logs-mngr &>/var/log/ispcp/ispcp-httpd-logs-mngr.log

# Backup
@daily root /var/www/ispcp/engine/backup/ispcp-backup-all yes &>/var/log/ispcp/ispcp-backup-all-mngr.log
@daily root /var/www/ispcp/engine/backup/ispcp-backup-ispcp noreport &>/var/log/ispcp/ispcp-backup-ispcp-mngr.log



RE: cron.d/ispcp - Cube - 06-16-2008 11:08 PM

Read the FAQ: http://www.isp-control.net/documentation/frequently_asked_questions/why_do_the_cronjobs_statistics_backups_etc._don_t_work


RE: cron.d/ispcp - antonypuckey - 06-17-2008 08:57 AM

Thank you Smile