From ccac6916c7dc5f85a2de206f0d4f623c73760c03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Droz?= Date: Mon, 26 Nov 2018 11:33:00 -0300 Subject: [PATCH] don't forcefully install pip/pip3 from the role --- tasks/install-with-pip.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tasks/install-with-pip.yml b/tasks/install-with-pip.yml index 87de4f7..322e669 100644 --- a/tasks/install-with-pip.yml +++ b/tasks/install-with-pip.yml @@ -1,12 +1,4 @@ --- -- name: Install pip - package: name=python-pip state=present - when: certbot_install == 'pip' - -- name: Install pip3 - package: name=python3-pip state=present - when: certbot_install == 'pip3' - - name: Install Certbot. pip: name="{{ certbot_package }}" state=present executable="{{ certbot_install }}"