From 0b523e064bdb2fddac56e3695e52f17dae11a02a Mon Sep 17 00:00:00 2001 From: hasufell Date: Tue, 11 Aug 2015 17:01:43 +0200 Subject: [PATCH] saving uncommitted changes in /etc prior to emerge run --- conf.d/._cfg0000_pydoc-2.7 | 7 +++++++ init.d/._cfg0000_pydoc-2.7 | 25 +++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 conf.d/._cfg0000_pydoc-2.7 create mode 100755 init.d/._cfg0000_pydoc-2.7 diff --git a/conf.d/._cfg0000_pydoc-2.7 b/conf.d/._cfg0000_pydoc-2.7 new file mode 100644 index 0000000..b5af52d --- /dev/null +++ b/conf.d/._cfg0000_pydoc-2.7 @@ -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. +PYDOC2_7_PORT="7464" diff --git a/init.d/._cfg0000_pydoc-2.7 b/init.d/._cfg0000_pydoc-2.7 new file mode 100755 index 0000000..4bc5545 --- /dev/null +++ b/init.d/._cfg0000_pydoc-2.7 @@ -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="${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 $? +}