/etc/init.d/fetch-crl-cron is in fetch-crl 3.0.14-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #! /bin/sh
### BEGIN INIT INFO
# Provides: fetch-crl-cron
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Enable daily run of fetch-crl
# Description: This shell script enables the automatic use of fetch-crl
### END INIT INFO
# Author: Mattias Ellert <mattias.ellert@fysast.uu.se>
# source function library
. /lib/lsb/init-functions
lockfile=/var/lock/fetch-crl-cron
RETVAL=0
start() {
touch $lockfile
log_success_msg "Enabling periodic fetch-crl"
RETVAL=0
}
stop() {
rm -f $lockfile
log_success_msg "Disabling periodic fetch-crl"
RETVAL=0
}
restart() {
stop
start
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart|force-reload)
restart
;;
reload)
;;
condrestart)
[ -f "$lockfile" ] && restart
;;
status)
if [ -f $lockfile ] ; then
log_success_msg "Periodic fetch-crl is enabled"
RETVAL=0
else
log_success_msg "Periodic fetch-crl is disabled"
RETVAL=3
fi
;;
*)
echo "Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart}"
RETVAL=1
esac
exit $RETVAL
|