Install python setuptools & virtualenv

These are no longer installed in the nodepool image provided by infra.

Change-Id: I52350a54e58042f390eb2ad84b220194ca2ef4b9
This commit is contained in:
Mark Goddard 2020-06-17 15:54:05 +01:00
parent 288d663912
commit d2cb3e2e93
1 changed files with 9 additions and 0 deletions

View File

@ -12,3 +12,12 @@
command: yum-config-manager --enable epel
when: ansible_os_family == 'RedHat'
become: true
- name: Install Python3 modules
become: true
package:
name:
- python3-pip
- python3-setuptools
- python3-wheel
- "{% if ansible_os_family == 'Debian' %}virtualenv{% else %}python3-virtualenv{% endif %}"