]> Frank Brehm's Git Trees - config/bruni/etc.git/commitdiff
committing changes in /etc after emerge run
authorFrank Brehm <frank@brehm-online.com>
Thu, 28 Dec 2017 18:46:47 +0000 (19:46 +0100)
committerFrank Brehm <frank@brehm-online.com>
Thu, 28 Dec 2017 18:46:47 +0000 (19:46 +0100)
Package changes:

.etckeeper
init.d/pydoc-3.4 [deleted file]

index 789b44e099c74e3ba1761c198f4e770dfb05d67c..27a47afd21ba319e8e9c8ad97948575cba9da3dc 100755 (executable)
@@ -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 (executable)
index f495354..0000000
+++ /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 $?
-}