From 5c6136957496fe1da79e9a28b5c25d0db9d9c82a Mon Sep 17 00:00:00 2001 From: Chris Church Date: Thu, 19 Jun 2014 11:20:36 -0500 Subject: [PATCH] Add data option to docs for win_ping. --- library/windows/win_ping | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/library/windows/win_ping b/library/windows/win_ping index 4e7e32c45ac..de32877d615 100644 --- a/library/windows/win_ping +++ b/library/windows/win_ping @@ -27,12 +27,21 @@ module: win_ping version_added: "1.7" short_description: A windows version of the classic ping module. description: - - Checks management connectivity of a windows host -options: {} + - Checks management connectivity of a windows host +options: + data: + description: + - Alternate data to return instead of 'pong' + required: false + default: 'pong' + aliases: [] author: Chris Church ''' EXAMPLES = ''' +# Test connectivity to a windows host +ansible winserver -m win_ping + # Example from an Ansible Playbook - action: win_ping '''