summaryrefslogtreecommitdiffstats
path: root/import-layers/meta-openembedded/meta-webserver/recipes-httpd/sthttpd/sthttpd/init
blob: f5f7b012432a82627702465105c00ad404c41628 (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
#!/bin/sh

### BEGIN INIT INFO
# Provides:          thttpd
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Small http server
# Description:       thttpd is a simple, small, portable, fast, and secure HTTP server.
### END INIT INFO


thttpd=/usr/sbin/thttpd
test -x "$thttpd" || exit 0


case "$1" in
  start)
    echo -n "Starting thttpd"
    start-stop-daemon --start --quiet --exec $thttpd -- -C @@CONFFILE
    echo "."
    ;;
  stop)
    echo -n "Stopping thttpd"
    start-stop-daemon --stop --quiet --exec $thttpd
    echo "."
    ;;
  reload|force-reload)
    start-stop-daemon --stop --quiet --signal 1 --exec $thttpd
    ;;
  restart)
    echo -n "Stopping thttpd"
    start-stop-daemon --stop --quiet --exec $thttpd -- -C @@CONFFILE
    echo "."
    echo -n "Waiting for thttpd to die off"
    for i in 1 2 3 ;
    do
        sleep 1
        echo -n "."
    done
    echo ""
    echo -n "Starting thttpd"
    start-stop-daemon --start --quiet --exec $thttpd -- -C @@CONFFILE
    echo "."
    ;;
  *)
    echo "Usage: /etc/init.d/thttpd {start|stop|reload|restart|force-reload}"
    exit 1
esac

exit 0
OpenPOWER on IntegriCloud