Update to 2022-01-24 12:00

This commit is contained in:
Daniel Berteaud
2022-01-24 12:00:19 +01:00
parent 3157f85dad
commit 1e81d72197
20 changed files with 67 additions and 26 deletions

View File

@@ -1,4 +1,7 @@
{% for key in zabbix_agent_conf.keys() | list %}
{% if zabbix_agent2 and key in ['StartAgents'] %}
# Ignoring directive {{ key }}={{ zabbix_agent_conf[key] }} as it's not supported in agent2
{% else %}
{% if not zabbix_agent_conf[key] is string and zabbix_agent_conf[key] is iterable %}
{% for x in zabbix_agent_conf[key] %}
{{ key }}={{ x }}
@@ -6,4 +9,5 @@
{% else %}
{{ key }}={{ zabbix_agent_conf[key] }}
{% endif %}
{% endif %}
{% endfor %}