Add proxy to /etc/apt/apt.conf for ubuntu (#3869)
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
593a9a262d
commit
7b674e0607
@ -19,6 +19,22 @@
|
||||
tags:
|
||||
- facts
|
||||
|
||||
- name: Add proxy to /etc/apt/apt.conf if http_proxy is defined
|
||||
lineinfile:
|
||||
path: "/etc/apt/apt.conf"
|
||||
line: 'Acquire::http::proxy "{{http_proxy}}";'
|
||||
create: yes
|
||||
state: present
|
||||
when: http_proxy is defined
|
||||
|
||||
- name: Add proxy to /etc/apt/apt.conf if https_proxy is defined
|
||||
lineinfile:
|
||||
path: "/etc/apt/apt.conf"
|
||||
line: 'Acquire::https::proxy "{{https_proxy}}";'
|
||||
create: yes
|
||||
state: present
|
||||
when: https_proxy is defined
|
||||
|
||||
- name: Bootstrap | Install python 2.x and pip
|
||||
raw:
|
||||
apt-get update && \
|
||||
|
Reference in New Issue
Block a user