I mean something different:
in the tarball you downloaded.
The file trunk/configs/cron.d/ispcp is bigger than
trunk/configs/dists/suse10/cron.d/ispcp
Thi differences are not trivial:
Code:
> diff -wu dists/suse10/cron.d/ispcp cron.d/ispcp
--- dists/suse10/cron.d/ispcp 2007-09-02 09:41:27.000000000 +0200
+++ cron.d/ispcp 2007-10-16 15:30:43.000000000 +0200
@@ -8,19 +8,31 @@
0,30 * * * * root {TRAFF_ROOT_DIR}/ispcp-srv-traff &>{LOG_DIR}/ispcp-srv-traff.log
0,30 * * * * root {TRAFF_ROOT_DIR}/ispcp-vrl-traff &>{LOG_DIR}/ispcp-vrl-traff.log
15,45 * * * * root {TRAFF_ROOT_DIR}/ispcp-vrl-traff-correction &>{LOG_DIR}/ispcp-vrl-traff-correction.log
+
+# customer logs
30 23 * * * root {TOOLS_ROOT_DIR}/ispcp-httpd-logs-mngr &>{LOG_DIR}/ispcp-httpd-logs-mngr.log
# Backup
-0 1 * * * root {BACKUP_ROOT_DIR}/ispcp-backup-all yes &>{LOG_DIR}/ispcp-backup-all-mngr.log
+@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-all-mngr.log
# Remove config backups older than seven days
-@daily root find /etc/ispcp/*/backup/* -maxdepth 0 -type f -mtime +7 -print | egrep '.*\.[0-9]+$' | xargs /bin/rm
+@daily root find {CONF_DIR}/*/backup/* -maxdepth 0 -type f -mtime +7 -print | egrep '.*\.[0-9]+$' | xargs /bin/rm
+
+# Remove Daemon Logs older than 14 days (except .gz files)
+@daily root find {LOG_DIR}/* -maxdepth 1 -type f -mtime +14 -print | egrep '.*\.gz$' | xargs /bin/rm
# AWStats
-{AWSTATS}
+{AW-ENABLED}15 */6 * * * root {AWSTATS_ROOT_DIR}/awstats_updateall.pl now -awstatsprog={AWSTATS_ENGINE_DIR}/awstats.pl
# Rootkit Hunter
-0 0,12 * * * root rkhunter --createlogfile --cronjob
+{RK-ENABLED}0 0,12 * * * root rkhunter --scan-knownbad-files --check-deleted --createlogfile --cronjob --createlogfile {RKHUNTER_LOG}>/dev/null 2>&1
+
+# Chkrootkit
+{CR-ENABLED}0 0,12 * * * root chkrootkit 2>&1 > {CHKROOTKIT_LOG}
+
+# Look for and purge old sessions every 30 minutes
+0,30 * * * * root {TOOLS_ROOT_DIR}/ispcpphptemp.sh >/dev/null 2>&1
# [{DMN_NAME}] backup task START.
# [{DMN_NAME}] backup task END.
@@ -28,4 +40,7 @@
# [{DMN_NAME}]:{CRONJOB_ID} custom task START.
# [{DMN_NAME}]:{CRONJOB_ID} custom task END.
+# [{DMN_NAME}] AWStats static tasks START.
+# [{DMN_NAME}] AWStats static tasks END.
+
# delayed tasks END.
I think you should be able to install fine if youm just copy the "debian cron file" to the suse dist...
/Joxi