瀏覽代碼
Merge pull request #151 from salt-formulas/atp-proxy
Fixed https apt proxy to same host as http
pull/152/head
Petr Michalec
6 年之前
No account linked to committer's email address
共有
1 個文件被更改,包括
1 次插入 和
1 次删除
-
linux/files/95proxies
|
|
@@ -1,4 +1,4 @@ |
|
|
|
{%- from "linux/map.jinja" import network with context %} |
|
|
|
Acquire::http::proxy "http://{{ network.proxy.host }}:{{ network.proxy.port }}/"; |
|
|
|
Acquire::ftp::proxy "ftp://{{ network.proxy.host }}:{{ network.proxy.port }}/"; |
|
|
|
Acquire::https::proxy "https://{{ network.proxy.host }}:{{ network.proxy.port }}/"; |
|
|
|
Acquire::https::proxy "http://{{ network.proxy.host }}:{{ network.proxy.port }}/"; |