From 8c32a10a69595518a559f949bafaf6886a0c36be Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Wed, 9 Nov 2016 21:33:33 +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: I1e3d9cc108298a1942493259bae459b036e73c0b --- tasks/ironic_install.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/ironic_install.yml b/tasks/ironic_install.yml index 827f3b58..9c89234c 100644 --- a/tasks/ironic_install.yml +++ b/tasks/ironic_install.yml @@ -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"