From e9cc96d50afdb4ae78036da319a5bdc0ff93fdc4 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Mon, 21 Nov 2016 17:45:13 +0000 Subject: [PATCH] Remove join filter from optional 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: I16d6d75cc432ba57407689d0e1a4055c8172ce12 --- tasks/swift_pypy_setup.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/swift_pypy_setup.yml b/tasks/swift_pypy_setup.yml index b9a91648..5a7eac6a 100644 --- a/tasks/swift_pypy_setup.yml +++ b/tasks/swift_pypy_setup.yml @@ -55,7 +55,7 @@ - name: Install pip packages into pypy venv pip: - name: "{{ swift_pip_packages | join(' ') }}" + name: "{{ swift_pip_packages }}" state: "{{ swift_pip_package_state }}" virtualenv: "{{ swift_bin | dirname }}" virtualenv_site_packages: "no"