10 lines
219 B
Django/Jinja
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 %}
|