ansible-role-nagios/templates/commands.cfg.j2

10 lines
219 B
Django/Jinja

# File managed by Ansible
# COMMANDS DEFINITIONS
{% if commands %}{% for command in commands %}
define command{
{% for key, value in command.items() %}
{{ key }} {{ value }}
{% endfor %}
}
{% endfor %}{% endif %}