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: I1e3d9cc108298a1942493259bae459b036e73c0b
This commit is contained in:
Jesse Pretorius 2016-11-09 21:33:33 +00:00
parent f7fdad572e
commit 8c32a10a69

View File

@ -32,7 +32,7 @@
- name: Install requires pip packages
pip:
name: "{{ ironic_requires_pip_packages | join(' ') }}"
name: "{{ ironic_requires_pip_packages }}"
state: "{{ ironic_pip_package_state }}"
extra_args: >-
{{ (pip_install_upper_constraints is defined) | ternary('--constraint ' + pip_install_upper_constraints | default(''),'') }}
@ -74,7 +74,7 @@
- name: Install pip packages
pip:
name: "{{ ironic_pip_packages | join(' ') }}"
name: "{{ ironic_pip_packages }}"
state: "{{ ironic_pip_package_state }}"
virtualenv: "{{ ironic_bin | dirname }}"
virtualenv_site_packages: "no"