there is no easy_install in Debian 'buster'
Change-Id: I49588f9ceef60472428d835b95d26a36eaf2b47e
This commit is contained in:
parent
1c866201e3
commit
6cf60d2385
@ -71,8 +71,11 @@ docker_runtime_directory: ""
|
|||||||
# Ubuntu 18+ does not have easy_install available due to
|
# Ubuntu 18+ does not have easy_install available due to
|
||||||
# https://bugs.launchpad.net/ubuntu/+source/python-setuptools/+bug/1774419.
|
# https://bugs.launchpad.net/ubuntu/+source/python-setuptools/+bug/1774419.
|
||||||
easy_install_available: >-
|
easy_install_available: >-
|
||||||
{{ ansible_distribution != 'Ubuntu' or
|
{{ not (ansible_distribution == 'Ubuntu' and
|
||||||
ansible_distribution_major_version is version(18, 'lt') }}
|
ansible_distribution_major_version is version(18, 'ge'))
|
||||||
|
and
|
||||||
|
not (ansible_distribution == 'Debian' and
|
||||||
|
ansible_distribution_major_version is version(10, 'ge')) }}
|
||||||
|
|
||||||
debian_pkg_install:
|
debian_pkg_install:
|
||||||
- "{{ docker_apt_package }}"
|
- "{{ docker_apt_package }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user