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

10 行
436B

  1. {%- if ftp and ftp.lower() != 'none' %}
  2. Acquire::ftp::proxy{%- if external_host %}::{{ external_host }}{% endif %} "{{ ftp }}";
  3. {%- endif %}
  4. {%- if http and http.lower() != 'none' %}
  5. Acquire::http::proxy{%- if external_host %}::{{ external_host }}{% endif %} "{{ http }}";
  6. {%- endif %}
  7. {%- if https and https.lower() != 'none' %}
  8. Acquire::https::proxy{%- if external_host %}::{{ external_host }}{% endif %} "{{ https }}";
  9. {%- endif -%}