From ea72fa67ce0bb84f08cae3bbd2bd0209e76af945 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Mon, 8 Jan 2018 16:04:46 +0100 Subject: [PATCH] committing changes in /etc after emerge run Package changes: +dev-lang/python-3.5.4-r1 --- .etckeeper | 2 ++ conf.d/pydoc-3.5 | 6 ++++++ init.d/pydoc-3.5 | 24 ++++++++++++++++++++++++ 3 files changed, 32 insertions(+) create mode 100644 conf.d/pydoc-3.5 create mode 100755 init.d/pydoc-3.5 diff --git a/.etckeeper b/.etckeeper index 019bef2..8d3ef0d 100755 --- a/.etckeeper +++ b/.etckeeper @@ -139,6 +139,7 @@ maybe chmod 0644 'conf.d/postgresql-9.6' maybe chmod 0644 'conf.d/puppetmaster' maybe chmod 0644 'conf.d/pydoc-2.7' maybe chmod 0644 'conf.d/pydoc-3.4' +maybe chmod 0644 'conf.d/pydoc-3.5' maybe chmod 0644 'conf.d/rarpd' maybe chmod 0644 'conf.d/rsyncd' maybe chmod 0644 'conf.d/rsyslog' @@ -471,6 +472,7 @@ 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/rarpd' maybe chmod 0755 'init.d/root' maybe chmod 0755 'init.d/rsyncd' diff --git a/conf.d/pydoc-3.5 b/conf.d/pydoc-3.5 new file mode 100644 index 0000000..989e6ee --- /dev/null +++ b/conf.d/pydoc-3.5 @@ -0,0 +1,6 @@ +# /etc/init.d/pydoc.conf + +# 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 new file mode 100755 index 0000000..e520584 --- /dev/null +++ b/init.d/pydoc-3.5 @@ -0,0 +1,24 @@ +#!/sbin/openrc-run +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public Licence v2 + +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 $? +} -- 2.39.5