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