File: yaws.sh

package info (click to toggle)
yaws 2.0.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,424 kB
  • ctags: 7,994
  • sloc: erlang: 40,751; sh: 6,466; ansic: 1,184; makefile: 898; lisp: 79; xml: 12; python: 3; php: 1
file content (18 lines) | stat: -rw-r--r-- 302 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

daemon="${TRUEPREFIX}/bin/yaws --daemon"
daemon_flags="--conf ${SYSCONFDIR}/yaws/yaws.conf"

. /etc/rc.d/rc.subr

pexp="${LOCALBASE}/lib/erlang/erts.*${TRUEPREFIX}/lib/yaws/ebin -run yaws"

rc_reload() {
	${rcexec} "${daemon} --hup"
}

rc_stop() {
	${rcexec} "${daemon} --stop"
}

rc_cmd $1