minor win_get_url doc update
This commit is contained in:
parent
dfda2e9f57
commit
feb077261e
1 changed files with 4 additions and 4 deletions
|
@ -67,21 +67,21 @@ options:
|
||||||
default: false
|
default: false
|
||||||
proxy_url:
|
proxy_url:
|
||||||
description:
|
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"
|
version_added: "2.0"
|
||||||
required: false
|
required: false
|
||||||
choices: null
|
choices: null
|
||||||
default: null
|
default: null
|
||||||
proxy_username:
|
proxy_username:
|
||||||
description:
|
description:
|
||||||
- Name of the user for authorization of the proxy server.
|
- Proxy authentication username
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
required: false
|
required: false
|
||||||
choices: null
|
choices: null
|
||||||
default: null
|
default: null
|
||||||
proxy_password:
|
proxy_password:
|
||||||
description:
|
description:
|
||||||
- Password of the user for authorization of the proxy server.
|
- Proxy authentication password
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
required: false
|
required: false
|
||||||
choices: null
|
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'
|
dest: 'C:\Users\RandomUser\earthrise.jpg'
|
||||||
force: no
|
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:
|
win_get_url:
|
||||||
url: 'http://www.example.com/earthrise.jpg'
|
url: 'http://www.example.com/earthrise.jpg'
|
||||||
dest: 'C:\Users\RandomUser\earthrise.jpg'
|
dest: 'C:\Users\RandomUser\earthrise.jpg'
|
||||||
|
|
Loading…
Reference in a new issue