Install the python3 ppa also on Ubuntu 16.04. Use the role to install packages on 18.04 too.

This commit is contained in:
Andrea Dell'Amico 2019-06-11 19:15:27 +02:00
parent f44b5011c9
commit 27ae09856c
1 changed files with 6 additions and 3 deletions

View File

@ -3,6 +3,11 @@
- name: Install the python 3 ppa repository
apt_repository: repo={{ py3_ppa }} update_cache=yes state=present
when:
- py3_env_install
- ansible_distribution_version is version_compare('18.04', '<')
tags: [ "python", "py3_env", "py3_env_pkgs", 'python3' ]
- name: Install the python3 deb packages
apt: name={{ py3_env_dpkg }} state={{ py3_env_pkgs_state }} update_cache=yes cache_valid_time=600
@ -16,8 +21,6 @@
pip: executable=pip{{ py3_env_version }} name={{ item.pkg }} version={{ item.version }}
with_items: '{{ py3_env_versioned_pip_pkgs | default ([]) }}'
when:
- py3_env_install
- is_trusty
when: py3_env_install
tags: [ "python", "py3_env", "py3_env_pkgs", 'python3' ]