mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
vmware_guest_snapshots: Add delegate_to directive to examples (#22933)
Without it it is not doing what most people would expect.
This commit is contained in:
parent
a06014663c
commit
071903b868
1 changed files with 4 additions and 0 deletions
|
@ -84,6 +84,7 @@ EXAMPLES = '''
|
||||||
state: present
|
state: present
|
||||||
snapshot_name: snap1
|
snapshot_name: snap1
|
||||||
description: snap1_description
|
description: snap1_description
|
||||||
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Remove a snapshot
|
- name: Remove a snapshot
|
||||||
vmware_guest_snapshot:
|
vmware_guest_snapshot:
|
||||||
|
@ -93,6 +94,7 @@ EXAMPLES = '''
|
||||||
name: dummy_vm
|
name: dummy_vm
|
||||||
state: remove
|
state: remove
|
||||||
snapshot_name: snap1
|
snapshot_name: snap1
|
||||||
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Revert to a snapshot
|
- name: Revert to a snapshot
|
||||||
vmware_guest_snapshot:
|
vmware_guest_snapshot:
|
||||||
|
@ -102,6 +104,7 @@ EXAMPLES = '''
|
||||||
name: dummy_vm
|
name: dummy_vm
|
||||||
state: revert
|
state: revert
|
||||||
snapshot_name: snap1
|
snapshot_name: snap1
|
||||||
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Remove all snapshots of a VM
|
- name: Remove all snapshots of a VM
|
||||||
vmware_guest_snapshot:
|
vmware_guest_snapshot:
|
||||||
|
@ -110,6 +113,7 @@ EXAMPLES = '''
|
||||||
password: vmware
|
password: vmware
|
||||||
name: dummy_vm
|
name: dummy_vm
|
||||||
state: remove_all
|
state: remove_all
|
||||||
|
delegate_to: localhost
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = """
|
RETURN = """
|
||||||
|
|
Loading…
Reference in a new issue