File: uhub.init

package info (click to toggle)
uhub 0.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,420 kB
  • ctags: 2,241
  • sloc: ansic: 18,124; xml: 575; perl: 568; sh: 368; makefile: 24
file content (97 lines) | stat: -rw-r--r-- 1,914 bytes parent folder | download | duplicates (6)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/bin/sh
### BEGIN INIT INFO
# Provides:          uhub
# Required-Start:    $remote_fs $network
# Required-Stop:     $remote_fs $network
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start daemon at boot time
# Description:       Enable service provided by daemon.
### END INIT INFO

PATH=/sbin:/bin:/usr/sbin:/usr/bin

NAME=uhub
DESC="ADC hub"
DAEMON=/usr/bin/uhub
PIDFILE=/var/run/uhub/uhub.pid
LOGFILE=/var/log/uhub/uhub.log
SCRIPTNAME=/etc/init.d/uhub

DEFAULTFILE=/etc/default/uhub
[ -r $DEFAULTFILE ] && . $DEFAULTFILE

DAEMON_ENABLE="${UHUB_ENABLE}"
DAEMON_OPTS="-l ${LOGFILE} -f -p ${PIDFILE}"

test -x $DAEMON || exit 0

. /lib/lsb/init-functions

ulimit -n 65536
mkdir -p /var/run/uhub/

set -e

case "$1" in
	start)
		if [ "$DAEMON_ENABLE" != "true" ]; then
			log_daemon_msg "Disabled $DESC" $NAME
			log_end_msg 0
			exit 0
		fi

		log_daemon_msg "Starting $DESC" $NAME
		if ! start-stop-daemon --start --quiet --oknodo \
			--pidfile $PIDFILE --exec $DAEMON -- $DAEMON_OPTS
		then
			log_end_msg 1
		else
			log_end_msg 0
		fi
		;;

	stop)
		log_daemon_msg "Stopping $DESC" $NAME
		if start-stop-daemon --quiet --stop --oknodo --retry 30 --oknodo \
			--pidfile $PIDFILE --exec $DAEMON
		then
			rm -f $PIDFILE
			log_end_msg 0
		else
			log_end_msg 1
		fi
		;;

	reload)
		log_daemon_msg "Reloading $DESC configuration" $NAME
		if start-stop-daemon --stop --signal 2 --oknodo --retry 30 --oknodo \
			--quiet --pidfile $PIDFILE --exec $DAEMON
		then
			if start-stop-daemon --start --quiet  \
				--pidfile $PIDFILE --exec $DAEMON -- $DAEMON_OPTS ; then
				log_end_msg 0
			else
				log_end_msg 1
			fi
		else
			log_end_msg 1
		fi
		;;

	restart|force-reload)
		$0 stop
		$0 start
		;;

	status)
		status_of_proc $DAEMON $NAME && exit 0 || exit $?
		;;

	*)
		echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload|status}" >&2
		exit 1
		;;
esac

exit 0