File: opencryptoki.init

package info (click to toggle)
opencryptoki 2.3.1%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 7,100 kB
  • ctags: 7,572
  • sloc: ansic: 98,937; sh: 564; makefile: 499
file content (64 lines) | stat: -rw-r--r-- 1,238 bytes parent folder | download
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
#!/bin/sh

### BEGIN INIT INFO
# Provides:		pkcsslotd opencryptoki
# Required-Start:	$local_fs $remote_fs
# Required-Stop:	$local_fs $remote_fs
# Should-Start:
# Should-Stop:
# Default-Start:	2 3 4 5
# Default-Stop:		0 1 6
# Short-Description:	starts pkcsslotd
# Description:		pkcsslotd belongs to opencryptoki
### END INIT INFO

PATH=/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/pkcsslotd
NAME=pkcsslotd
DESC="PKCS#11 slot daemon"
PIDFILE=/var/lib/opencryptoki/.slotpid

test -x "$DAEMON" || exit 0

set -e

case "${1}" in
	start)
		echo -n "Starting $DESC: "
		/usr/sbin/pkcs11_startup

		start-stop-daemon --start --quiet --pidfile "$PIDFILE" --exec "$DAEMON" -- $DAEMON_OPTS
		echo "$NAME."
		;;

	stop)
		echo -n "Stopping $DESC: "
		start-stop-daemon --stop --oknodo --quiet --pidfile "$PIDFILE" --exec "$DAEMON"
		rm -f "$PIDFILE"
		echo "$NAME."
		;;

	restart|force-reload)
		"${0}" stop
		sleep 1
		"${0}" start
		;;

	status)
		if start-stop-daemon --stop --signal 0 --quiet --pidfile "$PIDFILE" --exec "$DAEMON"
		then
			echo "$NAME is running."
		else
			echo "$NAME is not running."
			exit 1
		fi
		;;

	*)
		N=/etc/init.d/$NAME
		echo "Usage: $N {start|stop|restart|force-reload|status}" >&2
		exit 1
		;;
esac

exit 0