summaryrefslogtreecommitdiff
blob: c5baf366e5823f4382999983f25bd269475405af (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
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/cherokee/files/cherokee-0.4.5-init.d,v 1.1 2004/08/08 11:14:13 stuart Exp $

PIDFILE=/var/run/cherokee.pid

depend() {
	need net
}

start() {
	ebegin "Starting Cherokee Web Server"
	# make sure they can't break our startup by passing -d (which would
	# cause incorrect PID to be written to pidfile), or the incorrect
	# depot root
	start-stop-daemon --start --quiet \
		--pidfile ${PIDFILE} --make-pidfile -b \
		--exec /usr/bin/cherokee
	eend $?
}

stop() {
	ebegin "Stopping Cherokee Web Server"
	if [ -f ${PIDFILE} ]; then
		start-stop-daemon --stop --quiet --pidfile ${PIDFILE}
	fi
	rm -f ${PIDFILE}
	eend $?
}