mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Added return documentation to win_regmerge module
This commit is contained in:
parent
184d9fc4e5
commit
d2fe2287f9
1 changed files with 17 additions and 1 deletions
|
@ -68,4 +68,20 @@ EXAMPLES = '''
|
||||||
compare_to: HKLM:\SOFTWARE\myCompany
|
compare_to: HKLM:\SOFTWARE\myCompany
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = '''# '''
|
RETURN = '''
|
||||||
|
compare_to_key_found:
|
||||||
|
description: whether the parent registry key has been found for comparison
|
||||||
|
returned: when comparison key not found in registry
|
||||||
|
type: boolean
|
||||||
|
sample: false
|
||||||
|
difference_count:
|
||||||
|
description: number of differences between the registry and the file
|
||||||
|
returned: changed
|
||||||
|
type: integer
|
||||||
|
sample: 1
|
||||||
|
compared:
|
||||||
|
description: whether a comparison has taken place between the registry and the file
|
||||||
|
returned: when a comparison key has been supplied and comparison has been attempted
|
||||||
|
type: boolean
|
||||||
|
sample: true
|
||||||
|
'''
|
||||||
|
|
Loading…
Reference in a new issue