Browse Source

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

pull/3882/head
Anton Patsev 6 years ago
committed by Kubernetes Prow Robot
parent
commit
7b674e0607
1 changed files with 16 additions and 0 deletions
  1. 16
      roles/bootstrap-os/tasks/bootstrap-ubuntu.yml

16
roles/bootstrap-os/tasks/bootstrap-ubuntu.yml

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

Loading…
Cancel
Save