From: Frank Brehm Date: Thu, 28 Dec 2017 18:46:47 +0000 (+0100) Subject: committing changes in /etc after emerge run X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=c647c933448a5c87e06f067b5823ea34f9be0aa0;p=config%2Fbruni%2Fetc.git committing changes in /etc after emerge run Package changes: --- diff --git a/.etckeeper b/.etckeeper index 789b44e0..27a47afd 100755 --- a/.etckeeper +++ b/.etckeeper @@ -1766,7 +1766,6 @@ maybe chmod 0755 'init.d/postfix' maybe chmod 0755 'init.d/procfs' maybe chmod 0755 'init.d/pwcheck' maybe chmod 0755 'init.d/pydoc-2.7' -maybe chmod 0755 'init.d/pydoc-3.4' maybe chmod 0755 'init.d/pydoc-3.5' maybe chmod 0755 'init.d/radvd' maybe chmod 0755 'init.d/rarpd' diff --git a/init.d/pydoc-3.4 b/init.d/pydoc-3.4 deleted file mode 100755 index f4953542..00000000 --- a/init.d/pydoc-3.4 +++ /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_4_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.4.pid \ - --exec /usr/bin/pydoc3.4 -- -p "${pydoc_port}" - eend $? -} - -stop() { - ebegin "Stopping pydoc server" - start-stop-daemon --stop --quiet --pidfile /var/run/pydoc3.4.pid - eend $? -}