summaryrefslogtreecommitdiff
blob: f67371d8d9a8028c5a05ad9cc979b3b26d4a6661 (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-2011 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public Licence v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/files/pydoc.init,v 1.3 2011/05/17 15:14:43 arfrever Exp $

depend() {
	need net
}

start() {
	if [ -z "${PYDOC_PORT}" ]; then
		eerror "Port not set"
		return 1
	fi

	ebegin "Starting pydoc server on port ${PYDOC_PORT}" 
	start-stop-daemon --start --background --make-pidfile \
			  --pidfile /var/run/pydoc.pid \
			  --startas /usr/bin/@PYDOC@ -- -p "${PYDOC_PORT}"
	eend $?
}

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