summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkira Yokochi <akira6592@gmail.com>2022-08-20 02:15:31 +0900
committerGitHub <noreply@github.com>2022-08-19 10:15:31 -0700
commitc8fa046269b892d57e1ebc6509dc1d5334f36776 (patch)
treeaf49428714d881b811ccb907af848ba420bf6a24
parent7f711a736d3a2a95b7bac037750efa8ea88d13ca (diff)
downloadansible-c8fa046269b892d57e1ebc6509dc1d5334f36776.tar.gz
fix configuration name (#78507)
(cherry picked from commit 7120f11907c3c2cf64baaf258684676892fb9280)
-rw-r--r--docs/docsite/rst/porting_guides/porting_guide_core_2.12.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docsite/rst/porting_guides/porting_guide_core_2.12.rst b/docs/docsite/rst/porting_guides/porting_guide_core_2.12.rst
index d2a5e0cd86..ef48786650 100644
--- a/docs/docsite/rst/porting_guides/porting_guide_core_2.12.rst
+++ b/docs/docsite/rst/porting_guides/porting_guide_core_2.12.rst
@@ -35,7 +35,7 @@ Playbook
Python Interpreter Discovery
============================
-The default value of ``INTERPRETER_PYTHON_FALLBACK`` changed to ``auto``. The list of Python interpreters in ``INTERPRETER_PYTHON_FALLBACK`` changed to prefer Python 3 over Python 2. The combination of these two changes means the new default behavior is to quietly prefer Python 3 over Python 2 on remote hosts. Previously a deprecation warning was issued in situations where interpreter discovery would have used Python 3 but the interpreter was set to ``/usr/bin/python``.
+The default value of ``INTERPRETER_PYTHON`` changed to ``auto``. The list of Python interpreters in ``INTERPRETER_PYTHON_FALLBACK`` changed to prefer Python 3 over Python 2. The combination of these two changes means the new default behavior is to quietly prefer Python 3 over Python 2 on remote hosts. Previously a deprecation warning was issued in situations where interpreter discovery would have used Python 3 but the interpreter was set to ``/usr/bin/python``.
``INTERPRETER_PYTHON_FALLBACK`` can be changed from the default list of interpreters by setting the ``ansible_interpreter_python_fallback`` variable.