aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/set_package_installer_proxy/templates/apt_conf.j2
blob: cba8eacd45639058cbb6533d8f274d4c14c53f97 (plain)
1
2
3
4
5
6
{% if "http_proxy" in proxy_env %}
Acquire::http::Proxy "{{ proxy_env.http_proxy }}";
{% endif %}
{% if "https_proxy" in proxy_env %}
Acquire::https::Proxy "{{ proxy_env.https_proxy }}";
{% endif %}