ansible/test/integration/targets/prepare_vmware_tests/tasks/main.yml
Gonéri Le Bouder db81b1d0f5 prepapre_vmware_tests: add a common vars file
Add a new file to record the variables that are shared with the two
scenarios (real_lab and vcsim).

The goal is to reduce the the amount of boilerplate configuration from
a user perspective.
2019-06-21 14:35:44 -04:00

11 lines
197 B
YAML

---
- name: load vmware common vars
include_vars:
file: common.yml
- when: vcsim is not defined
include_tasks: init_real_lab.yml
- when: vcsim is defined
include_tasks: init_vcsim.yml