Files
ClusterAPI.imageBuilder/ansible/roles/setup/templates/etc/apt/apt.conf.d/90proxy

8 lines
150 B
Plaintext
Raw Normal View History

2023-02-22 21:24:42 +01:00
Acquire {
{% if http_proxy %}
http::Proxy "{{ http_proxy }}";
{% endif %}
{% if https_proxy %}
https::Proxy "{{ https_proxy }}";
{% endif %}
}