#
# Run cron_mail every minute to process mail
#
MAILTO=""
* * * * * /fabos/libexec/cron_mail > /tmp/mailLog 2>&1
# Run the script every hour to check if there are email failures.
0 * * * * /fabos/libexec/monitor_email > /tmp/mailLog 2>&1
#
# Run core files check up routine every hour
#
0 * * * * /sbin/croncore > /tmp/croncoreLog 2>&1
#
# Run cron to check for licenses getting expired
#
0 * * * * /sbin/chk_license_exp > /tmp/licexpired 2>&1
#
# Run disk usage check up routine every 15 minutes
#
*/15 * * * * /sbin/cron_cf > /tmp/croncfLog 2>&1
#
# Run logrotate to rotate messages log file.
#
*/2 * * * * /usr/sbin/logrotate /etc/syslogrotate.conf > /tmp/syslogrotateLog 2>&1
# Run memory monitoring tools every hour
#
5 * * * * /usr/bin/memoryusage.sh  > /tmp/memoryusage.log 2>&1
#
# Collect shared memory once every day
#
0 12 * * * /fabos/libexec/shmlog > /tmp/shmLog 2>&1
#
# Run tidyup log file once every day
#
0 12 * * * /fabos/cliexec/tidylog > /tmp/tidylogLog 2>&1
#
# Run DoS attack detection script every 30 mins
#
*/30 * * * * /fabos/cliexec/swMonitor.sh > /tmp/swMonitor.log 2>&1

