Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
comanage-registry-docker/comanage-registry-cron/www-data-crontab
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the default crontab to use the 4.0.0 syntax.
14 lines (11 sloc)
680 Bytes
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
SHELL=/bin/bash | |
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin | |
MAILTO="" | |
# Run Expiration Policies for CO 1 once a day at 1:00 AM | |
0 1 * * * cd /srv/comanage-registry/app && ./Console/cake job CoreJob.Expire -s --coid 1 | |
# Run Synchronize Org Identity Sources for CO 1 once a day at 1:00 AM | |
0 1 * * * cd /srv/comanage-registry/app && ./Console/cake job CoreJob.Sync -s --coid 1 | |
# Run Validate Group Member for CO 1 once a day at 1:00 AM | |
0 1 * * * cd /srv/comanage-registry/app && ./Console/cake job CoreJob.ValidateGroupMember -s --coid 1 | |
# Run queued jobs for CO 1 every 5 minutes | |
0-59/5 * * * * cd /srv/comanage-registry/app && ./Console/cake job -q -r -c 1 |