Fix python-pip install for centOS system

When trying to install gate-based on centOS7
The installer fail to install properly "pip"
it install python-devel instead of python-pip

There is no error in the current CI because pip
is already present so this step is skip by ansible.

Change-Id: Ia24c9eb444058e004039984ed61eff3de4403575
Story: #2003602
This commit is contained in:
Loic Nicolle 2018-09-05 14:13:19 +02:00
parent 9f6194ff77
commit 02789f0701
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@
state: present
- name: ensuring python pip package is present for centos
yum:
name: python-devel
name: python-pip
state: present
- name: ensuring python pip package is present for fedora via the python2-pip rpm