f24b3176eb
Add support for configuring apt's proxy setting on Ubuntu hosts. Change-Id: Iea1daff70fca5cf49f4e7f44af71a900678bb5c9 Story: 2009035 Task: 42782
9 lines
233 B
Django/Jinja
9 lines
233 B
Django/Jinja
Acquire {
|
|
{% if apt_proxy_http | default('', true) | length > 0 -%}
|
|
HTTP::proxy "{{ apt_proxy_http }}";
|
|
{% endif -%}
|
|
{% if apt_proxy_https | default('', true) | length > 0 -%}
|
|
HTTPS::proxy "{{ apt_proxy_https }}";
|
|
{% endif -%}
|
|
}
|