vmware_guest: Add delegate_to directive to examples (#22932)

Without this it is likely not going to do what people expect.
This commit is contained in:
Dag Wieers 2017-04-07 19:17:18 +02:00 committed by John R Barker
parent 0d5d5f2bf6
commit 3648e6fd2b

View file

@ -190,6 +190,7 @@ EXAMPLES = '''
mac: 'aa:bb:dd:aa:00:14' mac: 'aa:bb:dd:aa:00:14'
template: template_el7 template: template_el7
wait_for_ip_address: yes wait_for_ip_address: yes
delegate_to: localhost
register: deploy register: deploy
# Clone a VM from Template and customize # Clone a VM from Template and customize
@ -222,6 +223,7 @@ EXAMPLES = '''
password: new_vm_password password: new_vm_password
runonce: runonce:
- powershell.exe -ExecutionPolicy Unrestricted -File C:\Windows\Temp\Enable-WinRM.ps1 -ForceNewSSLCert - powershell.exe -ExecutionPolicy Unrestricted -File C:\Windows\Temp\Enable-WinRM.ps1 -ForceNewSSLCert
delegate_to: localhost
# Create a VM template # Create a VM template
- name: create a VM template - name: create a VM template
@ -246,6 +248,7 @@ EXAMPLES = '''
num_cpus: 1 num_cpus: 1
scsi: lsilogic scsi: lsilogic
wait_for_ip_address: yes wait_for_ip_address: yes
delegate_to: localhost
register: deploy register: deploy
# Rename a VM (requires the VM's uuid) # Rename a VM (requires the VM's uuid)
@ -256,6 +259,7 @@ EXAMPLES = '''
uuid: 421e4592-c069-924d-ce20-7e7533fab926 uuid: 421e4592-c069-924d-ce20-7e7533fab926
name: new_name name: new_name
state: present state: present
delegate_to: localhost
# Remove a VM by uuid # Remove a VM by uuid
- vmware_guest: - vmware_guest:
@ -264,6 +268,7 @@ EXAMPLES = '''
password: vmware password: vmware
uuid: 421e4592-c069-924d-ce20-7e7533fab926 uuid: 421e4592-c069-924d-ce20-7e7533fab926
state: absent state: absent
delegate_to: localhost
''' '''
RETURN = """ RETURN = """