File: yaws.init.d

package info (click to toggle)
yaws 1.65-4etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 4,164 kB
  • ctags: 3,907
  • sloc: erlang: 20,138; sh: 3,675; makefile: 556; ansic: 404; lisp: 79
file content (52 lines) | stat: -rwxr-xr-x 760 bytes parent folder | download | duplicates (2)
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/bash
#
# Startup script for the Yaws Web Server
#
# config: /etc/yaws.conf
#




yaws=%prefix%/bin/yaws
prog=yaws
yawsid=myserverid

test -x $yaws || exit 1


case "$1" in
    start)
	echo -n "Starting $prog: "
	$yaws  --id ${yawsid} --daemon --heart
	echo "."
    ;;
    stop)
	echo -n "Stopping $prog: "
	$yaws  --id ${yawsid} --stop
	echo "."
	;;
    reload)
	echo -n "Reloading $prog: "
	$yaws  --id ${yawsid} --hup
	echo "."
	;;
    status)
	$yaws  --id ${yawsid} --status
	echo "."
	;;
    restart)
	echo -n "Stopping $prog: "
        $yaws  --id ${yawsid} --stop
	echo -n "Starting $prog: "
        $yaws  --id ${yawsid} --daemon --heart
	echo "."
        ;;

    *)
	echo $"Usage: $prog {start|stop|restart|reload|status}"
	exit 1
esac

exit 0