From 9e2805bb71d88fcc47a8716428769f03971e79cd Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Tue, 16 Jun 2020 11:34:01 -0700 Subject: [PATCH] Use ensure-pip role Hopefully this will fix the currently-broken probe test gate? Depends-On: https://review.opendev.org/#/c/736070/ Change-Id: Ib652534b35236fdb6bcab131c7dc08a079bf72f6 (cherry picked from commit 51a587ed8dd5700b558ad26d70dcb7facc0f91e4) --- tools/playbooks/common/install_dependencies.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/playbooks/common/install_dependencies.yaml b/tools/playbooks/common/install_dependencies.yaml index bbec2d5404..67dbcf6a96 100644 --- a/tools/playbooks/common/install_dependencies.yaml +++ b/tools/playbooks/common/install_dependencies.yaml @@ -14,12 +14,13 @@ # limitations under the License. - hosts: all become: true + roles: + - ensure-pip tasks: - name: installing dependencies yum: name={{ item }} state=present with_items: - python-pyeclib - - python-pip - python-nose - python-swiftclient