blob: 6d155a76facae73a533fab801bfe9874e42c05b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#git
- name: set git proxy(http)
shell: "git config --global http.proxy {{ http_proxy }}"
when: http_proxy is defined
ignore_errors: yes
- name: set git proxy(https)
shell: "git config --global https.proxy {{https_proxy}}"
when: https_proxy is defined
ignore_errors: yes
|