From 5e2d1700a0f57b72ebca3f58935e34347b2abb21 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Sat, 23 Dec 2017 18:18:15 -0600 Subject: [PATCH] Issue #83: Directly install the pip 2 package. --- tests/https-self-signed.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/https-self-signed.yml b/tests/https-self-signed.yml index 5027d51..596331d 100644 --- a/tests/https-self-signed.yml +++ b/tests/https-self-signed.yml @@ -1,8 +1,9 @@ --- - hosts: all - vars: - pip_package: python-pip + tasks: + - name: Ensure the older Python 2 pip is available. + package: name=python-pip state=present # HTTPS Self-Signed Certificate test. - include: ../https-self-signed/provisioning/main.yml