blob: 5cb6f450d21b87416911fbb8c0d08dab9c033719 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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
|