]> Frank Brehm's Git Trees - config/helga/etc.git/commitdiff
saving uncommitted changes in /etc prior to emerge run
authorroot <root@helga.brehm-online.com>
Mon, 6 Feb 2017 12:19:38 +0000 (13:19 +0100)
committerroot <root@helga.brehm-online.com>
Mon, 6 Feb 2017 12:19:38 +0000 (13:19 +0100)
.etckeeper
python-exec/python-exec.conf [new file with mode: 0644]

index 249795d993bc05ab34ba3f5de31291317dd74086..9c677fccccccca7579327855eb3ab153c7b64737 100755 (executable)
@@ -2738,6 +2738,8 @@ maybe chmod 0644 'proftpd/blacklist.dat'
 maybe chmod 0644 'proftpd/dhparams.pem'
 maybe chmod 0644 'proftpd/proftpd.conf.sample'
 maybe chmod 0644 'protocols'
+maybe chmod 0755 'python-exec'
+maybe chmod 0644 'python-exec/python-exec.conf'
 maybe chmod 0644 'rc.conf'
 maybe chmod 0755 'reoback'
 maybe chmod 0644 'reoback/files.conf'
diff --git a/python-exec/python-exec.conf b/python-exec/python-exec.conf
new file mode 100644 (file)
index 0000000..12d6d3f
--- /dev/null
@@ -0,0 +1,29 @@
+#/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/<script-name>.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'.
+python2.7
+python3.4