8 lines
354 B
Plaintext
8 lines
354 B
Plaintext
|
{% if env_proxy_use_authentication %}
|
||
|
{% for proto in env_proxy_protocols %}
|
||
|
export {{ proto }}="{{ proxy_env.http_proxy }}"
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
export no_proxy="{% for target in no_proxy_targets %}{{ target }}{% if not loop.last %},{% endfor %}"
|
||
|
export NO_PROXY="{% for target in no_proxy_targets %}{{ target }}{% if not loop.last %},{% endfor %}"
|