mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
11 lines
281 B
YAML
11 lines
281 B
YAML
---
|
|
- block:
|
|
- name: Install Nuage VSD API Simulator
|
|
pip:
|
|
name: nuage-vsd-sim
|
|
|
|
- name: Start Nuage VSD API Simulator
|
|
shell: "(cd /; nuage-vsd-sim >/dev/null 2>&1 &)"
|
|
async: 10
|
|
poll: 0
|
|
when: "ansible_python_version is version('2.7', '>=')"
|