1 |
davidg |
1758 |
# Cron job running by default every 6 hours, at 43 minutes +/- 1 minute |
2 |
|
|
# The lock file can be enabled or disabled via a |
3 |
|
|
# service fetch-crl-cron start |
4 |
|
|
# chkconfig fetch-crl-cron on |
5 |
|
|
|
6 |
|
|
# Note the lock file not existing is success (and over-all success is needed |
7 |
|
|
# in order to prevent error messages from cron. "-q" makes it really |
8 |
|
|
# quiet, but beware that the "-q" overrides any verbosity settings |
9 |
|
|
|
10 |
|
|
42 */6 * * * root [ ! -f /var/lock/subsys/fetch-crl-cron ] || ( [ -f /etc/sysconfig/fetch-crl ] && . /etc/sysconfig/fetch-crl ; /usr/sbin/fetch-crl -q -r 120 ) |
11 |
|
|
|