From 79bd23da3ea0679e3d3eaad974ceb2fb8237c603 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Wed, 3 Dec 2014 08:16:11 -0800 Subject: [PATCH] Fixes to documentation --- lib/ansible/modules/extras/monitoring/uptimerobot.py | 1 + lib/ansible/modules/extras/system/glusterfs.py | 3 ++- lib/ansible/modules/extras/windows/win_chocolatey.py | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/extras/monitoring/uptimerobot.py b/lib/ansible/modules/extras/monitoring/uptimerobot.py index 7603f1185d6..889d144c9b3 100644 --- a/lib/ansible/modules/extras/monitoring/uptimerobot.py +++ b/lib/ansible/modules/extras/monitoring/uptimerobot.py @@ -7,6 +7,7 @@ short_description: Pause and start Uptime Robot monitoring description: - This module will let you start and pause Uptime Robot Monitoring author: Nate Kingsley +version_added: "1.9" requirements: - Valid Uptime Robot API Key options: diff --git a/lib/ansible/modules/extras/system/glusterfs.py b/lib/ansible/modules/extras/system/glusterfs.py index 238023bbe64..689a29878a0 100644 --- a/lib/ansible/modules/extras/system/glusterfs.py +++ b/lib/ansible/modules/extras/system/glusterfs.py @@ -24,12 +24,13 @@ module: glusterfs short_description: manage GlusterFS description: - Manage GlusterFS volumes +version_added: "1.9" options: action: required: true choices: [ 'create', 'start', 'stop', 'tune', 'rebalance', 'limit-usage' ] description: - - Mode of operation: create volume, start/stop volume, set tuning options, rebalance or set quota + - Indicates the action to take. Create volume, start/stop volume, set tuning options, rebalance or set quota name: required: true description: diff --git a/lib/ansible/modules/extras/windows/win_chocolatey.py b/lib/ansible/modules/extras/windows/win_chocolatey.py index aeccbca1cc0..80698abfe39 100644 --- a/lib/ansible/modules/extras/windows/win_chocolatey.py +++ b/lib/ansible/modules/extras/windows/win_chocolatey.py @@ -27,7 +27,7 @@ module: win_chocolatey version_added: "1.8" short_description: Installs packages using chocolatey description: - - Installs packages using Chocolatey (http://chocolatey.org/). If Chocolatey is missing from the system, the module will install it. List of packages: http://chocolatey.org/packages. + - Installs packages using Chocolatey (http://chocolatey.org/). If Chocolatey is missing from the system, the module will install it. List of packages can be found at http://chocolatey.org/packages options: package: description: @@ -46,7 +46,7 @@ options: aliases: [] force: description: - - Forces install of the package (even if it already exists). Using Force will cause ansible to always report "changed: true" on its run + - Forces install of the package (even if it already exists). Using Force will cause ansible to always report that a change was made required: false choices: - yes