This commit is contained in:
8
ansible/roles/setup/templates/etc/apt/apt.conf.d/90proxy
Normal file
8
ansible/roles/setup/templates/etc/apt/apt.conf.d/90proxy
Normal file
@ -0,0 +1,8 @@
|
||||
Acquire {
|
||||
{% if http_proxy %}
|
||||
http::Proxy "{{ http_proxy }}";
|
||||
{% endif %}
|
||||
{% if https_proxy %}
|
||||
https::Proxy "{{ https_proxy }}";
|
||||
{% endif %}
|
||||
}
|
4
ansible/roles/setup/templates/etc/apt/sources.list.j2
Normal file
4
ansible/roles/setup/templates/etc/apt/sources.list.j2
Normal file
@ -0,0 +1,4 @@
|
||||
deb http://us.archive.ubuntu.com/ubuntu {{ ansible_distribution_release }} main restricted universe
|
||||
deb http://us.archive.ubuntu.com/ubuntu {{ ansible_distribution_release }}-updates main restricted universe
|
||||
deb http://us.archive.ubuntu.com/ubuntu {{ ansible_distribution_release }}-backports main restricted universe
|
||||
deb http://security.ubuntu.com/ubuntu {{ ansible_distribution_release }}-security main restricted universe
|
Reference in New Issue
Block a user