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.
|
- {%- if ftp and ftp.lower() != 'none' %}
- Acquire::ftp::proxy{%- if external_host %}::{{ external_host }}{% endif %} "{{ ftp }}";
- {%- endif %}
- {%- if http and http.lower() != 'none' %}
- Acquire::http::proxy{%- if external_host %}::{{ external_host }}{% endif %} "{{ http }}";
- {%- endif %}
- {%- if https and https.lower() != 'none' %}
- Acquire::https::proxy{%- if external_host %}::{{ external_host }}{% endif %} "{{ https }}";
- {%- endif -%}
|