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.
|
- {%- 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 -%}
|