Add proxy to /etc/apt/apt.conf for ubuntu (#3869)

This commit is contained in:
Anton Patsev 2018-12-10 16:33:45 +06:00 committed by Kubernetes Prow Robot
parent 593a9a262d
commit 7b674e0607

View file

@ -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 && \