From 02789f07012ebc2df29ab5f49f2920a0b7188cce Mon Sep 17 00:00:00 2001 From: Loic Nicolle Date: Wed, 5 Sep 2018 14:13:19 +0200 Subject: [PATCH] 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 --- roles/deploy-python-pip/tasks/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/deploy-python-pip/tasks/main.yaml b/roles/deploy-python-pip/tasks/main.yaml index 8a2b04ec6..f358087a9 100644 --- a/roles/deploy-python-pip/tasks/main.yaml +++ b/roles/deploy-python-pip/tasks/main.yaml @@ -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