Further question:

With the play written as follows:

---

- hosts: localhost
  gather_facts: false

  vars:
    vsphere_host: 10.0.101.17
    vsphere_username: user
    vsphere_password: password
    vm_state: poweredon #poweredon shutdownguest restarted

  tasks:
    - name: Boot VMWare Guest
      with_items: ["vm1", "vm2"]
      vmware_guest:
         hostname: "{{ vsphere_host }}"
         username: "{{ vsphere_username }}"
         password: "{{ vsphere_password }}"
         validate_certs: no
         name: "{{ item }}"
         wait_for_ip_address: no
         state: "{{ vm_state }}"

How might I get vm1 to complete it's start prior to vm2 beginning its 
restart?  It's important that this be accomplished.

Thanks.

On Tuesday, August 14, 2018 at 3:38:03 PM UTC-4, Dimitri Yioulos wrote:
>
> Hello, all.
>
> I need to create a playbook which will include shutting down, then 
> restarting, six virtual machines.  The shut-downs/start-ups must be done on 
> the machines in specific order (start-ups in reverse order of shut-downs).  
> Since they are virtual, I was thinking of using the vmware_guest module.  I 
> know that it works for a single machine at a time, such as:
>
> ---
>
> - hosts: localhost
>   gather_facts: false
>
>   vars:
>     vsphere_host: 10.0.101.17
>     vsphere_username: user
>     vsphere_password: password
>     vsphere_guestname: vmname
>     vm_state: restarted #poweredon shutdownguest restarted
>
>   tasks:
>     - name: boot vmware guest
>       vmware_guest:
>          hostname: "{{ vsphere_host }}"
>          username: "{{ vsphere_username }}"
>          password: "{{ vsphere_password }}"
>          validate_certs: no
>          name: "{{ vsphere_guestname }}"
>          wait_for_ip_address: no
>          state: "{{ vm_state }}"
>
> But, is there a way to specify all the machines to be shut down/brought 
> up, in the order that I'd like that to happen?  If so, how?
>
> Thanks.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/e09957c3-7fbe-4bd1-b08f-921715528c3d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to