Add proxy to /etc/apt/apt.conf for ubuntu (#3869)
This commit is contained in:
parent
593a9a262d
commit
7b674e0607
1 changed files with 16 additions and 0 deletions
|
@ -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…
Reference in a new issue