New version of salt-formula from Saltstack
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

16 linhas
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 %}