Merge pull request #1766 from sivel/new-modules-version-bump
Fix version_added for recently added modules
This commit is contained in:
commit
66a59bbf2c
2 changed files with 5 additions and 2 deletions
|
@ -24,7 +24,7 @@
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: win_regmerge
|
module: win_regmerge
|
||||||
version_added: "2.0"
|
version_added: "2.1"
|
||||||
short_description: Merges the contents of a registry file into the windows registry
|
short_description: Merges the contents of a registry file into the windows registry
|
||||||
description:
|
description:
|
||||||
- Wraps the reg.exe command to import the contents of a registry file.
|
- Wraps the reg.exe command to import the contents of a registry file.
|
||||||
|
@ -68,3 +68,4 @@ EXAMPLES = '''
|
||||||
compare_to: HKLM:\SOFTWARE\myCompany
|
compare_to: HKLM:\SOFTWARE\myCompany
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
RETURN = '''# '''
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: win_timezone
|
module: win_timezone
|
||||||
version_added: "2.0"
|
version_added: "2.1"
|
||||||
short_description: Sets Windows machine timezone
|
short_description: Sets Windows machine timezone
|
||||||
description:
|
description:
|
||||||
- Sets machine time to the specified timezone, the module will check if the provided timezone is supported on the machine.
|
- Sets machine time to the specified timezone, the module will check if the provided timezone is supported on the machine.
|
||||||
|
@ -45,3 +45,5 @@ EXAMPLES = '''
|
||||||
win_timezone:
|
win_timezone:
|
||||||
timezone: "Central Standard Time"
|
timezone: "Central Standard Time"
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
RETURN = '''# '''
|
||||||
|
|
Loading…
Reference in a new issue