mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-14 13:54:37 +03:00
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:
|
tags:
|
||||||
- facts
|
- 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
|
- name: Bootstrap | Install python 2.x and pip
|
||||||
raw:
|
raw:
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
|
|||||||
Reference in New Issue
Block a user