hc
2023-11-06 15ade055295d13f95d49e3d99b09f3bbfb4a43e7
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