aboutsummaryrefslogtreecommitdiffstats
path: root/meta-filesystems/recipes-filesystems/owfs/owfs/owhttpd
blob: 5d74d13d9df2ef050762c1e6e21723e583e6a04f (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
58
59
60
#!/bin/sh

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

DAEMON="owhttpd"

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

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

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

startdaemon(){
	echo -n "Starting ${DAEMON}: "
	start-stop-daemon --start -x /usr/bin/${DAEMON}  -- ${CMDLINE} --pid_file /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