mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-05 07:54:00 -07:00
Pep8 fixes for Windows module (#24349)
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
86bf27511c
commit
9c5b55232c
12 changed files with 15 additions and 35 deletions
|
@ -23,7 +23,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.0',
|
|||
'supported_by': 'core'}
|
||||
|
||||
|
||||
DOCUMENTATION='''
|
||||
DOCUMENTATION = '''
|
||||
module: win_disk_image
|
||||
short_description: Manage ISO/VHD/VHDX mounts on Windows hosts
|
||||
version_added: 2.3
|
||||
|
@ -47,7 +47,7 @@ author:
|
|||
- Matt Davis (@nitzmahone)
|
||||
'''
|
||||
|
||||
RETURN=r'''
|
||||
RETURN = r'''
|
||||
mount_path:
|
||||
description: filesystem path where the target image is mounted
|
||||
returned: when C(state) is C(present)
|
||||
|
@ -55,7 +55,7 @@ mount_path:
|
|||
sample: F:\
|
||||
'''
|
||||
|
||||
EXAMPLES=r'''
|
||||
EXAMPLES = r'''
|
||||
# ensure an iso is mounted
|
||||
- win_disk_image:
|
||||
image_path: C:\install.iso
|
||||
|
@ -74,4 +74,3 @@ EXAMPLES=r'''
|
|||
state: absent
|
||||
|
||||
'''
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue