Skip to content

Commit

Permalink
Remove join filter from pip module tasks
Browse files Browse the repository at this point in the history
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: I03baaa16662072a78f0d506c6d2b8e9c62f205f8
  • Loading branch information
Jesse Pretorius committed Nov 9, 2016
1 parent f3cebd1 commit a7c7753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/galera_client_install.yml
Expand Up @@ -27,7 +27,7 @@

- name: Install pip packages
pip:
name: "{{ galera_client_pip_packages | join(' ') }}"
name: "{{ galera_client_pip_packages }}"
state: "{{ galera_client_pip_package_state }}"
extra_args: >-
{{ (pip_install_upper_constraints is defined) | ternary('--constraint ' + pip_install_upper_constraints | default(''),'') }}
Expand Down

0 comments on commit a7c7753

Please sign in to comment.