mirror of
https://github.com/trailofbits/algo.git
synced 2026-08-31 04:09:56 +02:00
14 lines
265 B
YAML
14 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
|