From 887d709c9551f33d48e9fadfea15fc275b586cd3 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Mon, 16 Jan 2017 13:24:52 +0100 Subject: [PATCH] saving uncommitted changes in /etc prior to emerge run --- .etckeeper | 2 ++ python-exec/python-exec.conf | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 python-exec/python-exec.conf diff --git a/.etckeeper b/.etckeeper index 749ca38..3e71721 100755 --- a/.etckeeper +++ b/.etckeeper @@ -1869,6 +1869,8 @@ maybe chmod 0644 'puppetlabs/puppetdb/conf.d/jetty.ini' maybe chmod 0644 'puppetlabs/puppetdb/conf.d/repl.ini' maybe chmod 0644 'puppetlabs/puppetdb/logback.xml' maybe chmod 0644 'puppetlabs/puppetdb/request-logging.xml' +maybe chmod 0755 'python-exec' +maybe chmod 0644 'python-exec/python-exec.conf' maybe chmod 0644 'rc.conf' maybe chmod 0644 'request-key.conf' maybe chmod 0755 'request-key.d' diff --git a/python-exec/python-exec.conf b/python-exec/python-exec.conf new file mode 100644 index 0000000..6602571 --- /dev/null +++ b/python-exec/python-exec.conf @@ -0,0 +1,28 @@ +#/etc/python-exec/python-exec.conf +# python-exec global preference configuration +# +# This file specifies global Python preference for python-exec. It +# determines which implementations will be used when wrapped Python +# scripts or generic Python wrappers (such as /usr/bin/python) are +# started with no implementation override (EPYTHON). +# +# The global configuration can be overriden for each wrapped script +# in /etc/python-exec/.conf. If this override exists, +# the global configuration is not used at all. +# +# The preference file should list Python implementations, one per line, +# in EPYTHON-format (e.g. python3.5), in order of preference. The most +# preferred implementation should be listed first. The program will use +# the most preferred implementation that is supported by it. +# +# If none of the listed implementations are supported, python-exec will +# attempt to use the remaining supported implementations in default +# order. +# +# A specific implementation can be disabled by preceding it with +# a hyphen (-). In this case, the implementation will never be used. +# If no other implementation is supported by the program, it will fail +# to start. +# +# Note: this file can be modified by calls to 'eselect python'. +python3.4 -- 2.39.5