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