ClusterAPI.imageBuilder/ansible/roles/setup/templates/etc/apt/apt.conf.d/90proxy
Danny Bessems f2b0a5e7c7
Some checks failed
continuous-integration/drone Build is failing
Test dependencies
2023-02-22 21:24:42 +01:00

8 lines
150 B
Plaintext

Acquire {
{% if http_proxy %}
http::Proxy "{{ http_proxy }}";
{% endif %}
{% if https_proxy %}
https::Proxy "{{ https_proxy }}";
{% endif %}
}