mirror of
https://github.com/trailofbits/algo.git
synced 2025-04-11 11:47:08 +02:00
13 lines
265 B
YAML
13 lines
265 B
YAML
---
|
|
- name: Clean up the environment
|
|
file:
|
|
dest: "{{ openstack_venv }}"
|
|
state: absent
|
|
when: clean_environment
|
|
|
|
- name: Install requirements
|
|
pip:
|
|
name: shade
|
|
state: latest
|
|
virtualenv: "{{ openstack_venv }}"
|
|
virtualenv_python: python2.7
|