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

23 行
482B

  1. {%- from "linux/map.jinja" import system with context %}
  2. {%- if system.enabled %}
  3. {%- if system.ca_certificates is defined %}
  4. {%- for certificate in system.ca_certificates %}
  5. {{ system.ca_certs_dir }}/{{ certificate }}.crt:
  6. file.managed:
  7. - source: salt://pki/{{ certificate }}/{{ certificate }}-chain.cert.pem
  8. - watch_in:
  9. - cmd: update_certificates
  10. {%- endfor %}
  11. update_certificates:
  12. cmd.wait:
  13. - name: /usr/sbin/update-ca-certificates
  14. {%- endif %}
  15. {%- endif %}