Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
377351f6
Commit
377351f6
authored
Mar 02, 2013
by
Yves Dorfsman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarified that proxy can be changed via an variable.
parent
3270a0ad
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
library/get_url
+8
-3
No files found.
library/get_url
View file @
377351f6
...
@@ -31,6 +31,12 @@ short_description: Downloads files from HTTP, HTTPS, or FTP to node
...
@@ -31,6 +31,12 @@ short_description: Downloads files from HTTP, HTTPS, or FTP to node
description:
description:
- Downloads files from HTTP, HTTPS, or FTP to the remote server. The remote
- Downloads files from HTTP, HTTPS, or FTP to the remote server. The remote
server I(must) have direct access to the remote resource.
server I(must) have direct access to the remote resource.
- By default, if an environment variable C(<protocol>_proxy) is set on
the target host, requests will be sent through that proxy. This
behaviour can be overriden by setting a variable for this task
(see `setting the environment
<http://ansible.cc/docs/playbooks2.html#setting-the-environment-and-working-with-proxies>`_),
or by using the use_proxy option.
version_added: "0.6"
version_added: "0.6"
options:
options:
url:
url:
...
@@ -58,9 +64,8 @@ options:
...
@@ -58,9 +64,8 @@ options:
aliases: [ "thirsty" ]
aliases: [ "thirsty" ]
use_proxy:
use_proxy:
description:
description:
- By default, if an environment variable C(<protocol>_proxy) is set on
- if C(yes), it will no use a proxy, even if one is defined by
the target host, request will be sent through the proxy. To override
in an environment variable on the target hosts.
this behaviour, set C(use_proxy=no).
required: false
required: false
default: yes
default: yes
choices: [yes, no]
choices: [yes, no]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment