]> Frank Brehm's Git Trees - config/samara/etc.git/commitdiff
committing changes in /etc after emerge run
authorfbrehm <fbrehm@samara.profitbricks.localdomain>
Mon, 12 Mar 2012 17:44:01 +0000 (18:44 +0100)
committerroot <root@samara.profitbricks.localdomain>
Mon, 12 Mar 2012 17:44:01 +0000 (18:44 +0100)
Package changes:

.etckeeper
conf.d/pydoc-3.1 [deleted file]
init.d/pydoc-3.1 [deleted file]

index 7e94a225b9847b3a70c945bb741bb06c2bd7f253..93dc81c08fee03ef7fa5dae51c451f5f09426c75 100755 (executable)
@@ -261,7 +261,6 @@ maybe chmod 0644 './conf.d/pciparm'
 maybe chmod 0644 './conf.d/postgresql-9.1'
 maybe chmod 0644 './conf.d/ppd'
 maybe chmod 0644 './conf.d/pydoc-2.7'
-maybe chmod 0644 './conf.d/pydoc-3.1'
 maybe chmod 0644 './conf.d/pydoc-3.2'
 maybe chmod 0644 './conf.d/rfcomm'
 maybe chmod 0644 './conf.d/rpcbind'
@@ -1029,7 +1028,6 @@ maybe chmod 0755 './init.d/ppd'
 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.1'
 maybe chmod 0755 './init.d/pydoc-3.2'
 maybe chmod 0755 './init.d/reboot.sh'
 maybe chmod 0755 './init.d/rfcomm'
diff --git a/conf.d/pydoc-3.1 b/conf.d/pydoc-3.1
deleted file mode 100644 (file)
index bb8b9ad..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-# /etc/init.d/pydoc.conf
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/files/pydoc.conf,v 1.3 2011/10/27 13:56:55 neurogeek Exp $
-
-# This file contains the configuration for pydoc's internal webserver.
-
-# Default port for Python's pydoc server.
-PYDOC3_1_PORT="7464"
diff --git a/init.d/pydoc-3.1 b/init.d/pydoc-3.1
deleted file mode 100755 (executable)
index c92d259..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2011 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public Licence v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/files/pydoc.init,v 1.4 2011/10/27 13:56:55 neurogeek Exp $
-
-depend() {
-       need net
-}
-
-start() {
-       local pydoc_port="${PYDOC3_1_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.1.pid \
-                         --exec /usr/bin/pydoc3.1 -- -p "${pydoc_port}"
-       eend $?
-}
-
-stop() {
-       ebegin "Stopping pydoc server"
-       start-stop-daemon --stop --quiet --pidfile /var/run/pydoc3.1.pid
-       eend $?
-}