Map Debian 8 to Python 2 (#74152) (#74359)

* Map Debian 8 to Python 2

If Python 3 is installed on Debian 8 Ansible cannot run, as the version
is too old (3.4)

* Add integration test for python interpreter discovery on Debian 8

* fix test issue on Debian 9, add changelog

* un"fix" not broken test :D

Co-authored-by: Fabian Klemp <fabian.klemp@elara-gmbh.de>
Co-authored-by: Matt Davis <mrd@redhat.com>
(cherry picked from commit 437a08eb6d)

Co-authored-by: elara-leitstellentechnik <elara-leitstellentechnik@users.noreply.github.com>
This commit is contained in:
Matt Davis 2021-05-17 07:10:03 -07:00 committed by GitHub
parent 5ee1fe2665
commit 3d6c8ee3e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- interpreter discovery - Debian 8 and lower will avoid unsupported Python3 version in interpreter discovery

View file

@ -1497,6 +1497,7 @@ INTERPRETER_PYTHON_DISTRO_MAP:
'6': /usr/bin/python
'8': /usr/libexec/platform-python
debian:
'8': /usr/bin/python
'10': /usr/bin/python3
fedora:
'23': /usr/bin/python3

View file

@ -140,8 +140,11 @@
- name: debian assertions
assert:
that:
- auto_out.ansible_facts.discovered_interpreter_python == '/usr/bin/python3'
when: distro == 'debian' and distro_version is version('10', '>=')
# Debian 8 and older
- auto_out.ansible_facts.discovered_interpreter_python == '/usr/bin/python' and distro_version is version('8', '<=') or distro_version is version('8', '>')
# Debian 10 and newer
- auto_out.ansible_facts.discovered_interpreter_python == '/usr/bin/python3' and distro_version is version('10', '>=') or distro_version is version('10', '<')
when: distro == 'debian'
- name: fedora assertions
assert: