From 4a52bdf4f54d0ddfe18ba16d29eb99f831ddd2d9 Mon Sep 17 00:00:00 2001 From: Hans Wurst Date: Sun, 20 Sep 2015 14:17:45 +0200 Subject: [PATCH] committing changes in /etc after emerge run Package changes: +dev-lang/python-3.5.0-r1 --- conf.d/pydoc-3.5 | 7 +++++++ init.d/pydoc-3.5 | 25 +++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 conf.d/pydoc-3.5 create mode 100755 init.d/pydoc-3.5 diff --git a/conf.d/pydoc-3.5 b/conf.d/pydoc-3.5 new file mode 100644 index 0000000..9284242 --- /dev/null +++ b/conf.d/pydoc-3.5 @@ -0,0 +1,7 @@ +# /etc/init.d/pydoc.conf +# $Id$ + +# 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 0000000..0827078 --- /dev/null +++ b/init.d/pydoc-3.5 @@ -0,0 +1,25 @@ +#!/sbin/runscript +# Copyright 1999-2014 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public Licence v2 +# $Id$ + +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 $? +}