c65842b9d8
This fix adds check mode support in vmware_guest Fixes: #32439 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
29 lines
927 B
YAML
29 lines
927 B
YAML
# Test code for the vmware_guest module.
|
|
# Copyright: (c) 2017, James Tanner <tanner.jc@gmail.com>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
- name: make sure pyvmomi is installed
|
|
pip:
|
|
name: pyvmomi
|
|
state: latest
|
|
when: "{{ ansible_user_id == 'root' }}"
|
|
|
|
- name: store the vcenter container ip
|
|
set_fact:
|
|
vcsim: "{{ lookup('env', 'vcenter_host') }}"
|
|
- debug: var=vcsim
|
|
|
|
# Commenting following two is failing right now - 15 Dec 2017
|
|
#- include: poweroff_d1_c1_f0.yml
|
|
#- include: poweroff_d1_c1_f1.yml
|
|
- include: check_mode.yml
|
|
- include: clone_d1_c1_f0.yml
|
|
- include: create_d1_c1_f0.yml
|
|
- include: cdrom_d1_c1_f0.yml
|
|
- include: create_rp_d1_c1_f0.yml
|
|
- include: create_guest_invalid_d1_c1_f0.yml
|
|
- include: mac_address_d1_c1_f0.yml
|
|
- include: disk_type_d1_c1_f0.yml
|
|
- include: create_nw_d1_c1_f0.yml
|
|
- include: delete_vm.yml
|
|
#- include: template_d1_c1_f0.yml
|