ansible-role-icinga2/templates/commands.conf.j2

16 lines
411 B
Django/Jinja
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# {{ ansible_managed }}
{% for name, command in icinga2_notification_commands.items() %}
object NotificationCommand "{{ name }}" {
command = [ ConfigDir + "/scripts/{{ command.script }}" ]
{% if command.env is defined %}
env = {
{% for env, value in command.env.items() %}
{{ env }} = {% if value is number %}{{ value }}{% else %}"{{ value }}"{% endif %}
{% endfor %}
}
{% endif %}
}
{% endfor %}