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: I7c64cb96e65ba4c858268847de6abef5377e44eb
This commit is contained in:
Jesse Pretorius 2016-11-09 21:32:53 +00:00
parent eee646fcd5
commit 95cebda11c

View File

@ -34,7 +34,7 @@
- name: Install requires pip packages
pip:
name: "{{ glance_requires_pip_packages | join(' ') }}"
name: "{{ glance_requires_pip_packages }}"
state: "{{ glance_pip_package_state }}"
extra_args: >-
{{ (pip_install_upper_constraints is defined) | ternary('--constraint ' + pip_install_upper_constraints | default(''),'') }}
@ -77,7 +77,7 @@
- name: Install pip packages
pip:
name: "{{ glance_pip_packages | join(' ') }}"
name: "{{ glance_pip_packages }}"
state: "{{ glance_pip_package_state }}"
virtualenv: "{{ glance_bin | dirname }}"
virtualenv_site_packages: "no"