File: fetch-crl-cron.init

package info (click to toggle)
fetch-crl 3.0.14-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 252 kB
  • ctags: 116
  • sloc: perl: 1,921; sh: 193; makefile: 129
file content (62 lines) | stat: -rw-r--r-- 1,006 bytes parent folder | download | duplicates (4)
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
#!/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
#

# 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