summaryrefslogtreecommitdiffstats
path: root/recipes/linknx/files/linknx.start
blob: 444d6c05c3021c3fd75b6988ebcc0b883c814170 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/sh

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

DAEMON="linknx"

test -f /usr/bin/${DAEMON} || exit 0

if test -f /etc/default/${DAEMON} ; then
. /etc/default/${DAEMON}
else
:
fi

if [ "$START_LINKNX" != "yes" ] 
then  
	exit 0
fi

startdaemon(){
	echo -n "Starting ${DAEMON}: "
	start-stop-daemon --start -x /usr/bin/${DAEMON} --  ${CMDLINE} -d -p/var/run/${DAEMON}.pid
	echo "done"
}

stopdaemon(){
	echo -n "Stopping ${DAEMON}: "
	start-stop-daemon --stop -p /var/run/${DAEMON}.pid
	echo "done"
}

case "$1" in
  start)
	startdaemon
	;;
  stop)
	stopdaemon
	;;
  force-reload)
	stopdaemon
	startdaemon
	;;
  restart)
	stopdaemon
	startdaemon
	;;
  reload)
	stopdaemon
	startdaemon
	;;
  *)
	echo "Usage: ${DAEMON} { start | stop | restart | reload }" >&2
	exit 1
	;;
esac

exit 0