Skip to content

Commit

Permalink
Merge branch 'zabbix_host_events_info_tags' of github.com:aplathrop/c…
Browse files Browse the repository at this point in the history
…ommunity.zabbix into zabbix_host_events_info_tags
  • Loading branch information
Andrew Lathrop committed May 31, 2024
2 parents df2e84f + eec026d commit 5b7291a
Show file tree
Hide file tree
Showing 7 changed files with 1,059 additions and 1,038 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ community.zabbix Release Notes

.. contents:: Topics

v2.5.1
======

Bugfixes
-------------

- zabbix_agent - Fix reading existing psk
- zabbix_agent - Fix role when zabbix_agent_listenip is undefined

v2.5.0
======

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ You can also include it in a `requirements.yml` file along with other required c
---
collections:
- name: community.zabbix
version: 2.5.0
version: 2.5.1
- name: ansible.posix
version: 1.3.0
- name: community.general
Expand Down
2 changes: 1 addition & 1 deletion changelogs/.plugin-cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,4 @@ plugins:
shell: {}
strategy: {}
vars: {}
version: 2.5.0
version: 2.5.1
2,075 changes: 1,043 additions & 1,032 deletions changelogs/changelog.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
namespace: community
name: zabbix
version: 2.5.0
version: 2.5.1
readme: README.md
authors:
- Dusan Matejka (@D3DeFi)
Expand Down
6 changes: 3 additions & 3 deletions roles/zabbix_agent/tasks/Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
network_interface: ansible_{{ zabbix_agent_listeninterface }}
when:
- (zabbix_agent_listeninterface)
- not zabbix_agent_listenip
- zabbix_agent_listenip is undefined
tags:
- config

Expand All @@ -60,7 +60,7 @@
zabbix_agent_listenip: "{{ hostvars[inventory_hostname][network_interface]['ipv4'].address | default('0.0.0.0') }}"
when:
- (zabbix_agent_listeninterface)
- not zabbix_agent_listenip
- zabbix_agent_listenip is undefined
tags:
- config
- api
Expand All @@ -69,7 +69,7 @@
ansible.builtin.set_fact:
zabbix_agent_listenip: "0.0.0.0"
when:
- not (zabbix_agent_listenip)
- zabbix_agent_listenip is undefined
tags:
- config

Expand Down
1 change: 1 addition & 0 deletions roles/zabbix_agent/tasks/psk_secret.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
ansible.builtin.slurp:
src: "{{ zabbix_agent_tlspskfile }}"
register: zabbix_agent_tlspsk_base64
become: true
when:
- zabbix_agent_tlspskcheck.stat.exists
no_log: "{{ ansible_verbosity < 3 }}"
Expand Down

0 comments on commit 5b7291a

Please sign in to comment.