Update to 2020-10-08 10:00

master
Daniel Berteaud 4 years ago
parent d39c7d7cb2
commit 00b4322710
  1. 6
      roles/zabbix_proxy/templates/zabbix_proxy.conf.j2
  2. 6
      roles/zabbix_server/templates/zabbix_server.conf.j2

@ -24,3 +24,9 @@ TLSPSKIdentity={{ inventory_hostname }}-proxy
TLSConnect=psk
TLSAccept=psk
{% endif %}
{% if ansible_all_ipv6_addresses | length < 1 %}
# This is a hack as when IPv6 is disabled
# Zabbix Proxy fails to detect minimum interval
# and don't send any pings, even in IPv4
Fping6Location=/usr/sbin/fping
{% endif %}

@ -11,3 +11,9 @@ DBPort={{ zabbix_server_db_port }}
{% for key in zabbix_server_conf.keys() | list %}
{{ key }}={{zabbix_server_conf[key] }}
{% endfor %}
{% if ansible_all_ipv6_addresses | length < 1 %}
# This is a hack as when IPv6 is disabled
# Zabbix Server fails to detect minimum interval
# and don't send any pings, even in IPv4
Fping6Location=/usr/sbin/fping
{% endif %}

Loading…
Cancel
Save