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
This commit is contained in:
Jesse Pretorius 2016-11-09 21:31:52 +00:00 committed by Jesse Pretorius (odyssey4me)
parent bde023eee8
commit cf25711398
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
- name: Install pip packages
pip:
name: "{{ almanach_requires_pip_packages | join(' ') }}"
name: "{{ almanach_requires_pip_packages }}"
state: present
executable: pip3