ensure-pip: add instructions for RedHat system

This change adds instructions to help user figure out what to do when
unittest job fail since https://review.opendev.org/736070 requires
epel to be installed.

Change-Id: Ie69ba81405bc3fbc7666c7ee12ed4996c5323709
This commit is contained in:
Tristan Cacqueray 2020-07-29 13:00:36 +00:00
parent fcf84346ef
commit 594aa7e6f5

View File

@ -7,15 +7,30 @@
state: present state: present
become: yes become: yes
- name: Install Python 2 pip - block:
yum: - name: Check for EPEL repository
name: stat:
- python-pip path: /etc/yum.repos.d/epel.repo
- python-setuptools register: _epel_repo
- python-virtualenv
- python-wheel - name: Fail with instructions when EPEL is not installed
state: present fail:
enablerepo: epel msg: |
The role `ensure-pip` cannot continue on this nodeset.
Install epel-release or set this Zuul job variable:
ensure_pip_from_packages_with_python2: false
when: not _epel_repo.stat.exists
- name: Install Python 2 pip
yum:
name:
- python-pip
- python-setuptools
- python-virtualenv
- python-wheel
state: present
enablerepo: epel
become: yes become: yes
when: ensure_pip_from_packages_with_python2 or when: ensure_pip_from_packages_with_python2 or
ansible_python.version.major == 2 ansible_python.version.major == 2