mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-27 07:33:18 +02:00
10 lines
278 B
Plaintext
10 lines
278 B
Plaintext
![]() |
{% for key in zabbix_agent_conf.keys() | list %}
|
||
|
{% if not zabbix_agent_conf[key] is string and zabbix_agent_conf[key] is iterable %}
|
||
|
{% for x in zabbix_agent_conf[key] %}
|
||
|
{{ key }}={{ x }}
|
||
|
{% endfor %}
|
||
|
{% else %}
|
||
|
{{ key }}={{ zabbix_agent_conf[key] }}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|