summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornitzmahone <mdavis@ansible.com>2015-12-19 00:19:16 -0800
committernitzmahone <mdavis@ansible.com>2015-12-19 00:28:30 -0800
commit968d6dcf2219d98181ca20904b69de3248158cac (patch)
treea65cc59ed1c8e22651c5016b6535527f55ca879d
parent40e823d2383fe0a4e19f49cd0fffc66f098c1ae9 (diff)
downloadansible-modules-core-968d6dcf2219d98181ca20904b69de3248158cac.tar.gz
minor win_get_url doc update
-rw-r--r--windows/win_get_url.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/windows/win_get_url.py b/windows/win_get_url.py
index cfe93982..1e203117 100644
--- a/windows/win_get_url.py
+++ b/windows/win_get_url.py
@@ -67,21 +67,21 @@ options:
default: false
proxy_url:
description:
- - The full URL of the proxy server a file to download through it.
+ - The full URL of the proxy server to download through.
version_added: "2.0"
required: false
choices: null
default: null
proxy_username:
description:
- - Name of the user for authorization of the proxy server.
+ - Proxy authentication username
version_added: "2.0"
required: false
choices: null
default: null
proxy_password:
description:
- - Password of the user for authorization of the proxy server.
+ - Proxy authentication password
version_added: "2.0"
required: false
choices: null
@@ -108,7 +108,7 @@ $ ansible -i hosts -c winrm -m win_get_url -a "url=http://www.example.com/earthr
dest: 'C:\Users\RandomUser\earthrise.jpg'
force: no
-- name: Download earthrise.jpg to 'C:\Users\RandomUser\earthrise.jpg' through the proxy server.
+- name: Download earthrise.jpg to 'C:\Users\RandomUser\earthrise.jpg' through a proxy server.
win_get_url:
url: 'http://www.example.com/earthrise.jpg'
dest: 'C:\Users\RandomUser\earthrise.jpg'