Saltstack Official Linux Formula
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- {%- 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 -%}
|