Skip to content

Commit

Permalink
Prep 3.0.2 (#1321)
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrodie18 authored Jul 4, 2024
1 parent d756b78 commit a7602ee
Show file tree
Hide file tree
Showing 8 changed files with 1,142 additions and 1,115 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ community.zabbix Release Notes

.. contents:: Topics

v3.0.2
======

Bugfixes
--------

- zabbix_agent Role - Fix Configure zabbix_agent
- zabbix_agent Role - Fixes a mispelling of the `zabbix_agent_logfile` variable
- zabbix_agent Role - Fixes error in the double assignment of values for the `zabbix_agent_tlspskidentity_check` and `zabbix_agent_tlspskcheck` variables.
- zabbix_agent Role - Fixes multiple errors related to the Windows install
- zabbix_agent, zabbix_proxy, and zabbix_server roles - Fixed problem with include file
- zabbix_repo Role - Fixes error that attempts to use the repo name as a variable.

v3.0.1
======

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ You can also include it in a `requirements.yml` file along with other required c
---
collections:
- name: community.zabbix
version: 3.0.1
version: 3.0.2
- 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 @@ -231,4 +231,4 @@ plugins:
shell: {}
strategy: {}
vars: {}
version: 3.0.1
version: 3.0.2
2,232 changes: 1,125 additions & 1,107 deletions changelogs/changelog.yaml

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions changelogs/fragments/1307.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/pr_1311.yml

This file was deleted.

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: 3.0.1
version: 3.0.2
readme: README.md
authors:
- Dusan Matejka (@D3DeFi)
Expand Down
2 changes: 1 addition & 1 deletion roles/zabbix_agent/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
- name: Set Variables
ansible.builtin.set_fact:
zabbix_agent_include_dir: "{{ zabbix_agent_include_dir is defined | ternary(zabbix_agent_include_dir, _include) }}"
zabbix_agent_logfile: "{{ zabbix_agent_logfilee is defined | ternary(zabbix_agent_logfile, _logfile) }}"
zabbix_agent_logfile: "{{ zabbix_agent_logfile is defined | ternary(zabbix_agent_logfile, _logfile) }}"
zabbix_agent_package: "{{ zabbix_agent_package is defined | ternary(zabbix_agent_package, _agent_package) }}"
zabbix_agent_pidfile: "{{ zabbix_agent_pidfile is defined | ternary(zabbix_agent_pidfile, _pidfile) }}"
zabbix_agent_service: "{{ zabbix_agent_service is defined | ternary(zabbix_agent_service, _agent_service) }}"
Expand Down

0 comments on commit a7602ee

Please sign in to comment.