summaryrefslogtreecommitdiff
blob: 9f05c41841783ce9cff3d8a6d1a4c7b023c5142f (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
#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later

#NB: Config is in /etc/conf.d/bozohttpd


depend() {
	need logger net
}

checkconfig() {
	if [ -z "$DATADIR" ] || [ -z "$BIND_ADDRESS" ] || [ -z "$LISTEN_PORT" ]; then
		eerror "You need to setup DATADIR, BIND_ADDRESS and LISTEN PORT in /etc/conf.d/bozohttpd first"
		return 1
	fi
}

start() {
	checkconfig || return 1

	local params=""
	
	[ -n "$USER" ]                     && params="$params -U $USER"	
	[ -n "$INDEX_DEFAULT" ]            && params="$params -x $INDEX_DEFAULT"
	[ -n "$APPEND" ]                   && params="$params $APPEND"	

	ebegin "Starting bozohttpd"
	start-stop-daemon --start --exec /usr/bin/bozohttpd -- -b -i $BIND_ADDRESS -I $LISTEN_PORT -X ${params} $DATADIR
	eend ${?}
}

stop() {
	ebegin "Stopping bozohttpd"
	start-stop-daemon --stop --exec /usr/bin/bozohttpd
	eend ${?}
}