You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Current pip unconditionally uses md5.
|
|
|
|
# We can re-enable if pip switches to a different hash or allows us to not check md5.
|
|
|
|
|
|
|
|
- name: find virtualenv command
|
|
|
|
command: "which virtualenv virtualenv-{{ ansible_python.version.major }}.{{ ansible_python.version.minor }}"
|
|
|
|
register: command
|
|
|
|
failed_when: not command.stdout_lines
|
|
|
|
|
|
|
|
- name: remember selected virtualenv command
|
|
|
|
set_fact:
|
|
|
|
virtualenv: "{{ command.stdout_lines[0] }}"
|
|
|
|
|
|
|
|
- block:
|
|
|
|
- name: install git, needed for repo installs
|
|
|
|
package:
|
|
|
|
name: git
|
|
|
|
state: present
|
|
|
|
when: ansible_distribution != "MacOSX"
|
|
|
|
register: git_install
|
|
|
|
|
|
|
|
- include_tasks: pip.yml
|
|
|
|
always:
|
|
|
|
- name: platform specific cleanup
|
|
|
|
include_tasks: "{{ cleanup_filename }}"
|
|
|
|
with_first_found:
|
|
|
|
- "{{ ansible_distribution | lower }}_cleanup.yml"
|
|
|
|
- "default_cleanup.yml"
|
|
|
|
loop_control:
|
|
|
|
loop_var: cleanup_filename
|
|
|
|
when: ansible_fips|bool != True
|
|
|
|
module_defaults:
|
|
|
|
pip:
|
|
|
|
virtualenv_command: "{{ virtualenv }}"
|