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

8 lines
150 B
Plaintext
Raw Normal View History

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