From fc2e7dbe013d3a5b5a444345e4065e3f6e5658f5 Mon Sep 17 00:00:00 2001 From: Jens Harbott Date: Wed, 31 Oct 2018 15:21:33 +0000 Subject: [PATCH] Make the pip3 role really install something It seems that the package module doesn't have a default value for the state of a package. So not specifying it is essentially a no-op. Specify state: present so that we really get the packages installed that we want to have. Change-Id: Ied9484c74922b9f48e14205b73ca95066a68a87f --- playbooks/roles/pip3/tasks/main.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/playbooks/roles/pip3/tasks/main.yaml b/playbooks/roles/pip3/tasks/main.yaml index ccc4b09b11..9798bedccd 100644 --- a/playbooks/roles/pip3/tasks/main.yaml +++ b/playbooks/roles/pip3/tasks/main.yaml @@ -3,3 +3,4 @@ name: - python3-pip - python3-virtualenv + state: present