summaryrefslogtreecommitdiff
path: root/www-apps/trac/files/tracd.initd.2
blob: 75de90902efb6a7ed274a8319c8b33c56c9207c2 (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
#!/sbin/runscript
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/www-apps/trac/files/tracd.initd.2,v 1.1 2008/09/10 07:50:30 wrobel Exp $

depend() {
	need net
}

start() {
	ebegin "Starting tracd"
	# tracd fails to create pidfile if started as non-root user, thus we are asking
	# s-s-d to do that. To have correct pid we avoid -d option of tracd and use
	# --background option of s-s-d.
	start-stop-daemon --start --chuid ${TRACD_USER:-tracd}:${TRACD_GROUP:-tracd} \
                --pidfile /var/run/tracd.pid --make-pidfile --background \
		--env PYTHON_EGG_CACHE="/var/lib/trac/egg-cache" \
		--exec /usr/bin/python -- /usr/bin/tracd \
		-p ${TRACD_PORT:-8000} ${TRACD_OPTS:---env-parent-dir /var/lib/trac/}
	eend $?
}

stop() {
	ebegin "Stopping tracd"
	start-stop-daemon --stop --quiet --pidfile /var/run/tracd.pid
	eend $?
}