aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/conserver/files/conserver.init
blob: dfbb72c6be0ca396c4dd2a6248d7e37172760fc2 (plain)
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
#!/bin/sh
#
# Startup for conserver
#

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/conserver
PIDFILE="/var/run/conserver.pid"
DESC="Serial console server"
CONF="/etc/conserver.cf"

test ! -r /etc/default/conserver || . /etc/default/conserver
test -x "$DAEMON" || exit 0
test -f "$CONF" || exit 0

case "$1" in
	'start')
		echo "Starting console server daemon"
		start-stop-daemon -S -x "$DAEMON" -- -d $CONSERVER_ARGS
		;;

	'stop')
		echo "Stopping console server daemon"
		start-stop-daemon -K -x "$DAEMON"
		;;

	'restart')
		echo "Restarting console server daemon"
		[ -e $PIDFILE ] && kill -HUP `cat $PIDFILE`
		;;

	*)
		echo "Usage: $0 { start | stop | restart }"
		;;

esac
exit 0