etc-gentoo/init.d/._cfg0000_pydoc-2.7

26 lines
609 B
Groff
Executable File

#!/sbin/runscript
# Copyright 1999-2014 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public Licence v2
# $Id$
start() {
local pydoc_port="${PYDOC2_7_PORT-${PYDOC_PORT}}"
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/pydoc2.7.pid \
--exec /usr/bin/pydoc2.7 -- -p "${pydoc_port}"
eend $?
}
stop() {
ebegin "Stopping pydoc server"
start-stop-daemon --stop --quiet --pidfile /var/run/pydoc2.7.pid
eend $?
}