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

26 行
414B

  1. {%- from "linux/map.jinja" import network with context %}
  2. {%- if network.enabled %}
  3. {%- if grains.os_family == 'Debian' %}
  4. {%- if network.proxy.host == 'none' %}
  5. /etc/profile.d/proxy.sh:
  6. file.absent
  7. /etc/apt/apt.conf.d/95proxies:
  8. file.absent
  9. {%- else %}
  10. /etc/apt/apt.conf.d/95proxies:
  11. file.managed:
  12. - template: jinja
  13. - source: salt://linux/files/95proxies
  14. {%- endif %}
  15. {%- endif %}
  16. {%- endif %}