File: fetch-crl.fetch-crl-cron.init

package info (click to toggle)
fetch-crl 3.0.23-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 272 kB
  • sloc: perl: 2,037; sh: 194; makefile: 110
file content (71 lines) | stat: -rwxr-xr-x 1,312 bytes parent folder | download | duplicates (3)
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

### 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@physics.uu.se>

# source function library
. /lib/lsb/init-functions

# source any environment settings, e.g. for HTTP proxies
[ -f /etc/default/fetch-crl ] && . /etc/default/fetch-crl

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
	;;
    condrestart)
	[ -f $lockfile ] && restart
	;;
    reload)
	;;
    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