ansible-pilote/templates/nagios/conf.d/commands.cfg.j2
Julien Riou 096a3e0540
Initial commit
Signed-off-by: Julien Riou <julien@riou.xyz>
2024-04-27 15:21:55 +02:00

9 lines
217 B
Django/Jinja

{{ ansible_managed | comment }}
{% for command in nagios_commands | default([]) %}
define command {
command_name {{ command['command_name'] }}
command_line {{ command['command_line'] }}
}
{% endfor %}