2016-10-13 04:33:12 +02:00
|
|
|
# Current pip unconditionally uses md5.
|
|
|
|
# We can re-enable if pip switches to a different hash or allows us to not check md5.
|
2016-09-21 02:56:07 +02:00
|
|
|
|
2019-03-27 21:56:28 +01:00
|
|
|
- name: find virtualenv command
|
|
|
|
command: "which virtualenv virtualenv-{{ ansible_python.version.major }}.{{ ansible_python.version.minor }}"
|
|
|
|
register: command
|
2020-09-25 21:30:47 +02:00
|
|
|
ignore_errors: true
|
|
|
|
|
|
|
|
- name: is virtualenv available to python -m
|
|
|
|
command: '{{ ansible_python_interpreter }} -m virtualenv'
|
|
|
|
register: python_m
|
|
|
|
when: not command.stdout_lines
|
|
|
|
failed_when: python_m.rc != 2
|
2019-03-27 21:56:28 +01:00
|
|
|
|
|
|
|
- name: remember selected virtualenv command
|
|
|
|
set_fact:
|
2020-09-25 21:30:47 +02:00
|
|
|
virtualenv: "{{ command.stdout_lines[0] if command is successful else ansible_python_interpreter ~ ' -m virtualenv' }}"
|
2019-03-27 21:56:28 +01:00
|
|
|
|
2019-03-28 23:09:17 +01:00
|
|
|
- block:
|
|
|
|
- name: install git, needed for repo installs
|
|
|
|
package:
|
|
|
|
name: git
|
|
|
|
state: present
|
2020-08-07 21:28:10 +02:00
|
|
|
when: ansible_distribution not in ["MacOSX", "Alpine"]
|
2019-03-28 23:09:17 +01:00
|
|
|
register: git_install
|
|
|
|
|
2020-09-25 21:30:47 +02:00
|
|
|
- name: ensure wheel is installed
|
|
|
|
pip:
|
|
|
|
name: wheel
|
|
|
|
|
2019-03-28 23:09:17 +01:00
|
|
|
- include_tasks: pip.yml
|
|
|
|
always:
|
2020-02-11 00:25:38 +01:00
|
|
|
- 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
|
2016-10-13 04:33:12 +02:00
|
|
|
when: ansible_fips|bool != True
|
2019-03-27 21:56:28 +01:00
|
|
|
module_defaults:
|
|
|
|
pip:
|
|
|
|
virtualenv_command: "{{ virtualenv }}"
|