Bläddra i källkod

Merge pull request #151 from salt-formulas/atp-proxy

Fixed https apt proxy to same host as http
pull/152/head
Petr Michalec 6 år sedan
förälder
incheckning
7752d48fac
Inget konto är kopplat till bidragsgivarens mejladress
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      linux/files/95proxies

+ 1
- 1
linux/files/95proxies Visa fil

@@ -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 }}/";

Laddar…
Avbryt
Spara