mirror of
https://github.com/trailofbits/algo.git
synced 2026-08-30 19:59:42 +02:00
* clean commits from branch cloud-cloudstack w/ proper committer email/name * fixed ansible-lint errors * corrected typo in prompted message * standalone cloudstack zones module * added missing environment variables * remove `_cloudstack_zones` default variable * Move to Ubuntu 19.04 * Update cloud-cloudstack.md * Update cloud-cloudstack.md Markdown doesn't render `<your account>` * Update prompts.yml * Update main.yml
16 lines
291 B
YAML
16 lines
291 B
YAML
---
|
|
- name: Clean up the environment
|
|
file:
|
|
dest: "{{ cloudstack_venv }}"
|
|
state: absent
|
|
when: clean_environment
|
|
|
|
- name: Install requirements
|
|
pip:
|
|
name:
|
|
- cs
|
|
- sshpubkeys
|
|
state: latest
|
|
virtualenv: "{{ cloudstack_venv }}"
|
|
virtualenv_python: python2.7
|