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

11 lines
219 B
Text
Raw Permalink Normal View History

2022-10-11 09:19:02 +02:00
# 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 %}