Quellcode durchsuchen

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

Fixed https apt proxy to same host as http
pull/152/head
Petr Michalec vor 6 Jahren
Ursprung
Commit
7752d48fac
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      linux/files/95proxies

+ 1
- 1
linux/files/95proxies Datei anzeigen

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

Laden…
Abbrechen
Speichern