mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00: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:
committed by
John R Barker
parent
a06014663c
commit
071903b868
@@ -84,6 +84,7 @@ EXAMPLES = '''
|
||||
state: present
|
||||
snapshot_name: snap1
|
||||
description: snap1_description
|
||||
delegate_to: localhost
|
||||
|
||||
- name: Remove a snapshot
|
||||
vmware_guest_snapshot:
|
||||
@@ -93,6 +94,7 @@ EXAMPLES = '''
|
||||
name: dummy_vm
|
||||
state: remove
|
||||
snapshot_name: snap1
|
||||
delegate_to: localhost
|
||||
|
||||
- name: Revert to a snapshot
|
||||
vmware_guest_snapshot:
|
||||
@@ -102,6 +104,7 @@ EXAMPLES = '''
|
||||
name: dummy_vm
|
||||
state: revert
|
||||
snapshot_name: snap1
|
||||
delegate_to: localhost
|
||||
|
||||
- name: Remove all snapshots of a VM
|
||||
vmware_guest_snapshot:
|
||||
@@ -110,6 +113,7 @@ EXAMPLES = '''
|
||||
password: vmware
|
||||
name: dummy_vm
|
||||
state: remove_all
|
||||
delegate_to: localhost
|
||||
'''
|
||||
|
||||
RETURN = """
|
||||
|
||||
Reference in New Issue
Block a user