Remove a wrong conditional.

This commit is contained in:
Andrea Dell'Amico 2020-05-22 16:56:35 +02:00
parent 0ad65e0cf5
commit 3367565215
1 changed files with 0 additions and 2 deletions

View File

@ -1,7 +1,5 @@
{% if env_proxy_use_authentication %}
{% for proto in env_proxy_protocols %} {% for proto in env_proxy_protocols %}
export {{ proto }}="{{ proxy_env.http_proxy }}" export {{ proto }}="{{ proxy_env.http_proxy }}"
{% endfor %} {% endfor %}
{% endif %}
export no_proxy="{% for target in no_proxy_targets %}{{ target }}{% if not loop.last %},{% endif %}{% endfor %}" export no_proxy="{% for target in no_proxy_targets %}{{ target }}{% if not loop.last %},{% endif %}{% endfor %}"
export NO_PROXY="{% for target in no_proxy_targets %}{{ target }}{% if not loop.last %},{% endif %}{% endfor %}" export NO_PROXY="{% for target in no_proxy_targets %}{{ target }}{% if not loop.last %},{% endif %}{% endfor %}"