From 074ae73f4fd2eb2b84ea457116c4f54e62d95f4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lance=20E=20Sloan=20=C2=ABUMich=C2=BB?= Date: Tue, 13 Mar 2018 14:18:11 -0400 Subject: [PATCH] Hourly jobs without email - 2 As requested by knoop@umich.edu, change the frequency to hourly and don't send email. This time, from a branch based at release 1.1.1, not at master. --- rootdir_etc_cron.d/kartograafr | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/rootdir_etc_cron.d/kartograafr b/rootdir_etc_cron.d/kartograafr index 9524362..0101025 100644 --- a/rootdir_etc_cron.d/kartograafr +++ b/rootdir_etc_cron.d/kartograafr @@ -5,12 +5,15 @@ MAILTO=miserver-arcgis-canvas@umich.edu # Weekdays: At 07:00, 11:00, 15:00, and 19:00, process assignment groups and # send email to instructors -0 7,11,15,19 * * 1-5 /usr/local/apps/kartograafr/startup.sh --mail > /proc/1/fd/1 2>&1 +#0 7,11,15,19 * * 1-5 /usr/local/apps/kartograafr/startup.sh --mail > /proc/1/fd/1 2>&1 # Weekdays: On all other hourly runs between 07:00 and 19:00, process # assignment groups without sending email to instructors -0 8-10,12-14,16-18 * * 1-5 /usr/local/apps/kartograafr/startup.sh > /proc/1/fd/1 2>&1 +#0 8-10,12-14,16-18 * * 1-5 /usr/local/apps/kartograafr/startup.sh > /proc/1/fd/1 2>&1 # Weekends: At 07:00, process assignment groups and send email to instructors -0 7 * * 0,6 /usr/local/apps/kartograafr/startup.sh --mail > /proc/1/fd/1 2>&1 +#0 7 * * 0,6 /usr/local/apps/kartograafr/startup.sh --mail > /proc/1/fd/1 2>&1 + +# Hourly, without email (Requested by knoop@umich.edu on 11 March 2018 at 19:29) +0 * * * * /usr/local/apps/kartograafr/startup.sh > /proc/1/fd/1 2>&1 #end