1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#!/bin/sh
#
# fetch-crl-cron This shell script enables periodic CRL retrieval via cron
#
# chkconfig: - 65 01
#
# description: Run the certificate revocation lists update periodically via cron
# processname: fetch-crl-cron
# config: /etc/fetch-crl.conf
#
### BEGIN INIT INFO
# Provides: fetch-crl-cron
# Required-Start: $remote_fs
# Required-Stop: $remote_fs
# Default-Start: 3 5
# Default-Stop: 0 2 1 6
# Description: Run the certificate revocation lists update periodically via cron
### END INIT INFO
# source function library
. /etc/rc.d/init.d/functions
lockfile=/var/lock/subsys/fetch-crl-cron
RETVAL=0
start() {
action $"Enabling periodic fetch-crl: " touch "$lockfile"
RETVAL=$?
}
stop() {
action $"Disabling periodic fetch-crl: " rm -f "$lockfile"
RETVAL=$?
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart|force-reload)
$0 stop
$0 start
;;
reload)
;;
condrestart)
[ -f "$lockfile" ] && {
$0 stop
$0 start
}
;;
status)
if [ -f $lockfile ]; then
echo $"Periodic fetch-crl is enabled."
RETVAL=0
else
echo $"Periodic fetch-crl is disabled."
RETVAL=3
fi
;;
*)
echo $"Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart}"
exit 1
esac
exit $RETVAL
|