diff --git a/states/zabbix/defaults.yaml b/states/zabbix/defaults.yaml index 9f27bcd..e7d4c38 100644 --- a/states/zabbix/defaults.yaml +++ b/states/zabbix/defaults.yaml @@ -25,6 +25,7 @@ zabbix: # - zabbix-get # - zabbix-sender config: + BufferSize: 10000 Hostname: localhost Include: "/etc/zabbix/zabbix_agentd.conf.d/*.conf" LogFile: /var/log/zabbix/zabbix_agentd.log diff --git a/states/zabbix/templates/zabbix_agentd.conf.j2 b/states/zabbix/templates/zabbix_agentd.conf.j2 index 37b82e0..537e2fd 100644 --- a/states/zabbix/templates/zabbix_agentd.conf.j2 +++ b/states/zabbix/templates/zabbix_agentd.conf.j2 @@ -1,4 +1,4 @@ {%- from "zabbix/map.jinja" import zabbix with context -%} -{%- for key, value in zabbix.agent.config.items() %} +{% for key, value in zabbix.agent.config.items() -%} {{ key }}={{ value }} -{%- endfor %} \ No newline at end of file +{% endfor -%} \ No newline at end of file