mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
469 B
YAML
17 lines
469 B
YAML
7 years ago
|
#
|
||
|
# Copyright: (c) 2017, Abhijeet Kasurde <akasurde@redhat.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
|
||
|
|
||
|
- include: poweroff_d1_c1_f0.yml
|
||
|
- include: poweroff_d1_c1_f1.yml
|