From: Frank Brehm Date: Wed, 27 Dec 2017 22:59:02 +0000 (+0100) Subject: committing changes in /etc after emerge run X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=0dda59c8e93f94683ab3cca31d07a9fa35649bd6;p=config%2Fbruni%2Fetc.git committing changes in /etc after emerge run Package changes: +dev-lang/python-3.5.4-r1 --- diff --git a/conf.d/pydoc-3.5 b/conf.d/pydoc-3.5 new file mode 100644 index 00000000..989e6eef --- /dev/null +++ b/conf.d/pydoc-3.5 @@ -0,0 +1,6 @@ +# /etc/init.d/pydoc.conf + +# This file contains the configuration for pydoc's internal webserver. + +# Default port for Python's pydoc server. +PYDOC3_5_PORT="7464" diff --git a/init.d/pydoc-3.5 b/init.d/pydoc-3.5 new file mode 100755 index 00000000..e5205842 --- /dev/null +++ b/init.d/pydoc-3.5 @@ -0,0 +1,24 @@ +#!/sbin/openrc-run +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public Licence v2 + +start() { + local pydoc_port="${PYDOC3_5_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/pydoc3.5.pid \ + --exec /usr/bin/pydoc3.5 -- -p "${pydoc_port}" + eend $? +} + +stop() { + ebegin "Stopping pydoc server" + start-stop-daemon --stop --quiet --pidfile /var/run/pydoc3.5.pid + eend $? +}