Saltstack Official Linux Formula
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

10 líneas
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 -%}