Saltstack Official Linux Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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