-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from lsloan/cron-hourly-nomail-2
Hourly jobs without email - 2
- Loading branch information
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,15 @@ [email protected] | |
|
||
# 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 [email protected] on 11 March 2018 at 19:29) | ||
0 * * * * /usr/local/apps/kartograafr/startup.sh > /proc/1/fd/1 2>&1 | ||
#end |