From e3cffb0de454b17e307761bff9f46fdfa9441466 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Tue, 1 Mar 2016 11:12:30 -0600 Subject: [PATCH] Fix version_added for recently added modules --- lib/ansible/modules/extras/windows/win_regmerge.py | 3 ++- lib/ansible/modules/extras/windows/win_timezone.py | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/extras/windows/win_regmerge.py b/lib/ansible/modules/extras/windows/win_regmerge.py index 53952e71d12..854d6b3aa0e 100644 --- a/lib/ansible/modules/extras/windows/win_regmerge.py +++ b/lib/ansible/modules/extras/windows/win_regmerge.py @@ -24,7 +24,7 @@ DOCUMENTATION = ''' --- module: win_regmerge -version_added: "2.0" +version_added: "2.1" short_description: Merges the contents of a registry file into the windows registry description: - Wraps the reg.exe command to import the contents of a registry file. @@ -68,3 +68,4 @@ EXAMPLES = ''' compare_to: HKLM:\SOFTWARE\myCompany ''' +RETURN = '''# ''' diff --git a/lib/ansible/modules/extras/windows/win_timezone.py b/lib/ansible/modules/extras/windows/win_timezone.py index abe52be1680..ed238ff201a 100644 --- a/lib/ansible/modules/extras/windows/win_timezone.py +++ b/lib/ansible/modules/extras/windows/win_timezone.py @@ -24,7 +24,7 @@ DOCUMENTATION = ''' --- module: win_timezone -version_added: "2.0" +version_added: "2.1" short_description: Sets Windows machine timezone description: - 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: timezone: "Central Standard Time" ''' + +RETURN = '''# '''