Saltstack Official Linux Formula
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

10 lines
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 -%}