Saltstack Official Apt-Cacher Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

7 行
331B

  1. {% from "apt-cacher/ng/map.jinja" import apt_cacher_ng with context -%}
  2. Acquire::http::Proxy "http://{{ apt_cacher_ng.server_address }}:{{ apt_cacher_ng.server_port }}";
  3. Acquire::https::Proxy "{{ apt_cacher_ng.https_proxy }}";
  4. {% for host in apt_cacher_ng.local_mirrors -%}
  5. Acquire::http::Proxy::{{ host }} "DIRECT";
  6. {% endfor -%}