1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix issue #32138 - fix examples typo (#32140)

This commit is contained in:
Simon Dodsley 2017-10-25 17:44:15 -04:00 committed by Jordan Borean
parent 8724c069d7
commit 09f55d300b

View file

@ -56,7 +56,7 @@ EXAMPLES = r'''
name: foo
suffix: ansible
fa_url: 10.10.10.2
fa_api_token: e31060a7-21fc-e277-6240-25983c6c4592
api_token: e31060a7-21fc-e277-6240-25983c6c4592
state: present
- name: Create R/W clone foo_clone from snapshot foo.snap
@ -65,7 +65,7 @@ EXAMPLES = r'''
suffix: snap
target: foo_clone
fa_url: 10.10.10.2
fa_api_token: e31060a7-21fc-e277-6240-25983c6c4592
api_token: e31060a7-21fc-e277-6240-25983c6c4592
state: copy
- name: Overwrite existing volume foo_clone with snapshot foo.snap
@ -75,7 +75,7 @@ EXAMPLES = r'''
target: foo_clone
overwrite: true
fa_url: 10.10.10.2
fa_api_token: e31060a7-21fc-e277-6240-25983c6c4592
api_token: e31060a7-21fc-e277-6240-25983c6c4592
state: copy
- name: Delete and eradicate snapshot named foo.snap
@ -84,7 +84,7 @@ EXAMPLES = r'''
suffix: snap
eradicate: true
fa_url: 10.10.10.2
fa_api_token: e31060a7-21fc-e277-6240-25983c6c4592
api_token: e31060a7-21fc-e277-6240-25983c6c4592
state: absent
'''