Always install python-lxml.

This commit is contained in:
Andrea Dell'Amico 2020-02-12 18:00:57 +01:00
parent f0c5a54f9d
commit 4878798502
2 changed files with 0 additions and 8 deletions

View File

@ -34,8 +34,6 @@ common_packages:
default_python_packages_trusty: default_python_packages_trusty:
- python-software-properties - python-software-properties
- python-lxml
- python-boto
default_python_packages: default_python_packages:
- python-lxml - python-lxml

View File

@ -5,7 +5,6 @@
- name: Install the basic python packages - name: Install the basic python packages
apt: pkg={{ default_python_packages }} state=present update_cache=yes cache_valid_time=1800 apt: pkg={{ default_python_packages }} state=present update_cache=yes cache_valid_time=1800
when: not is_trusty
tags: packages tags: packages
- name: Install the basic python packages on trusty - name: Install the basic python packages on trusty
@ -13,11 +12,6 @@
when: is_trusty | bool when: is_trusty | bool
tags: packages tags: packages
- name: Install python-lxml on bionic
apt: pkg=python-lxml state=present update_cache=yes cache_valid_time=1800
when: is_bionic | bool
tags: packages
- name: Install software-properties-common if needed - name: Install software-properties-common if needed
apt: pkg=software-properties-common state=present update_cache=yes cache_valid_time=1800 apt: pkg=software-properties-common state=present update_cache=yes cache_valid_time=1800
when: is_ubuntu | bool when: is_ubuntu | bool