1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Use virtualenv in pip test to remove distribute.

This commit is contained in:
Matt Clay 2018-11-26 16:25:50 -08:00
parent 8c1f701e6e
commit 6f29eafef4

View file

@ -501,10 +501,22 @@
state: absent
# https://github.com/ansible/ansible/issues/47198
- name: make sure the virtualenv does not exist
file:
state: absent
name: "{{ output_dir }}/pipenv"
- name: install distribute in the virtualenv
pip:
name: distribute
virtualenv: "{{ output_dir }}/pipenv"
state: present
- name: try to remove distribute
pip:
state: "absent"
name: "distribute"
virtualenv: "{{ output_dir }}/pipenv"
ignore_errors: yes
register: remove_distribute