Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

13 lines
408B

  1. {%- from 'icinga2/map.jinja' import icinga2 with context -%}
  2. {% set fqdn = salt.grains.get('fqdn') -%}
  3. object ApiListener "api" {
  4. cert_path = SysconfDir + "/icinga2/pki/" + NodeName + ".crt"
  5. key_path = SysconfDir + "/icinga2/pki/" + NodeName + ".key"
  6. ca_path = SysconfDir + "/icinga2/pki/ca.crt"
  7. {% if fqdn != icinga2.master_fqdn -%}
  8. accept_config = true
  9. accept_commands = true
  10. {% endif -%}
  11. }