Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a7602ee

Browse files
authored
1 parent d756b78 commit a7602ee

File tree

8 files changed

+1142
-1115
lines changed

8 files changed

+1142
-1115
lines changed

CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ community.zabbix Release Notes
44

55
.. contents:: Topics
66

7+
v3.0.2
8+
======
9+
10+
Bugfixes
11+
--------
12+
13+
- zabbix_agent Role - Fix Configure zabbix_agent
14+
- zabbix_agent Role - Fixes a mispelling of the `zabbix_agent_logfile` variable
15+
- zabbix_agent Role - Fixes error in the double assignment of values for the `zabbix_agent_tlspskidentity_check` and `zabbix_agent_tlspskcheck` variables.
16+
- zabbix_agent Role - Fixes multiple errors related to the Windows install
17+
- zabbix_agent, zabbix_proxy, and zabbix_server roles - Fixed problem with include file
18+
- zabbix_repo Role - Fixes error that attempts to use the repo name as a variable.
19+
720
v3.0.1
821
======
922

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ You can also include it in a `requirements.yml` file along with other required c
110110
---
111111
collections:
112112
- name: community.zabbix
113-
version: 3.0.1
113+
version: 3.0.2
114114
- name: ansible.posix
115115
version: 1.3.0
116116
- name: community.general

changelogs/.plugin-cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,4 +231,4 @@ plugins:
231231
shell: {}
232232
strategy: {}
233233
vars: {}
234-
version: 3.0.1
234+
version: 3.0.2

changelogs/changelog.yaml

Lines changed: 1125 additions & 1107 deletions
Large diffs are not rendered by default.

changelogs/fragments/1307.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/pr_1311.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
namespace: community
33
name: zabbix
4-
version: 3.0.1
4+
version: 3.0.2
55
readme: README.md
66
authors:
77
- Dusan Matejka (@D3DeFi)

roles/zabbix_agent/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
- name: Set Variables
2828
ansible.builtin.set_fact:
2929
zabbix_agent_include_dir: "{{ zabbix_agent_include_dir is defined | ternary(zabbix_agent_include_dir, _include) }}"
30-
zabbix_agent_logfile: "{{ zabbix_agent_logfilee is defined | ternary(zabbix_agent_logfile, _logfile) }}"
30+
zabbix_agent_logfile: "{{ zabbix_agent_logfile is defined | ternary(zabbix_agent_logfile, _logfile) }}"
3131
zabbix_agent_package: "{{ zabbix_agent_package is defined | ternary(zabbix_agent_package, _agent_package) }}"
3232
zabbix_agent_pidfile: "{{ zabbix_agent_pidfile is defined | ternary(zabbix_agent_pidfile, _pidfile) }}"
3333
zabbix_agent_service: "{{ zabbix_agent_service is defined | ternary(zabbix_agent_service, _agent_service) }}"

0 commit comments

Comments
 (0)