11 lines
219 B
Text
11 lines
219 B
Text
|
# 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 %}
|