Saltstack Official Linux Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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