New version of salt-formula from Saltstack
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ů.

16 lines
490B

  1. {%- from "linux/map.jinja" import system with context %}
  2. {%- from "salt/map.jinja" import api with context %}
  3. rest_cherrypy:
  4. port: {{ api.bind.port }}
  5. host: {{ api.bind.address }}
  6. {%- if api.get('ssl', {}).get('enabled', False) %}
  7. ssl_crt: /etc/ssl/certs/{{ system.name }}.{{ system.domain }}.crt
  8. ssl_key: /etc/ssl/private/{{ system.name }}.{{ system.domain }}.key
  9. {%- else %}
  10. disable_ssl: True
  11. {%- endif %}
  12. {%- if api.get('debug', False) %}
  13. debug: True
  14. {%- endif %}