From cf257113985e589bffc7bbc3830f2b7cd60a13a1 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Wed, 9 Nov 2016 21:31:52 +0000 Subject: [PATCH] Remove join filter from pip module tasks Ansible 2.2 now treats the 'name' argument for the pip module as a list, removing the need for us to implement the join filter to optimise the install execution. Change-Id: Id5d7d103c15711e4c9959112be46f777e06ded1d --- tasks/almanach_install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/almanach_install.yml b/tasks/almanach_install.yml index 2d6f882..b990871 100644 --- a/tasks/almanach_install.yml +++ b/tasks/almanach_install.yml @@ -24,7 +24,7 @@ - name: Install pip packages pip: - name: "{{ almanach_requires_pip_packages | join(' ') }}" + name: "{{ almanach_requires_pip_packages }}" state: present executable: pip3