From 95cebda11c5cb1e367c8c602fec770f11398976d Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Wed, 9 Nov 2016 21:32:53 +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: I7c64cb96e65ba4c858268847de6abef5377e44eb --- tasks/glance_install.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/glance_install.yml b/tasks/glance_install.yml index 3ad0359e..dd94b764 100644 --- a/tasks/glance_install.yml +++ b/tasks/glance_install.yml @@ -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"