From: Frank Brehm Date: Mon, 21 Nov 2016 21:51:22 +0000 (+0100) Subject: committing changes in /etc after emerge run X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=f057b79b934b7d751d3271acfe77fd53e01d0f6b;p=config%2Fbruni%2Fetc.git committing changes in /etc after emerge run Package changes: --- diff --git a/conf.d/pydoc-3.5 b/conf.d/pydoc-3.5 deleted file mode 100644 index 9284242f..00000000 --- a/conf.d/pydoc-3.5 +++ /dev/null @@ -1,7 +0,0 @@ -# /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 deleted file mode 100755 index cccacbae..00000000 --- a/init.d/pydoc-3.5 +++ /dev/null @@ -1,25 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 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 $? -}