Fix mismatched closing tags in shared-agent.conf.j2

This commit is contained in:
Jesus Garcia 2026-02-03 08:07:00 -05:00
parent 6c7a01fb11
commit 228aa8b19e
No known key found for this signature in database
GPG Key ID: 8461CA78326C96C9
2 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
### Changed ### Changed
- Fix mismatched tags in .j2 template files ([#1930](https://github.com/wazuh/wazuh-ansible/pull/1930))
- Remove meta yamls that prevent indexer and agent role installation from PR #1806 ([#1921](https://github.com/wazuh/wazuh-ansible/pull/1921)) - Remove meta yamls that prevent indexer and agent role installation from PR #1806 ([#1921](https://github.com/wazuh/wazuh-ansible/pull/1921))
- Ensure boolean condition evaluations - from community PR #1897 ([#1916](https://github.com/wazuh/wazuh-ansible/pull/1916)) - Ensure boolean condition evaluations - from community PR #1897 ([#1916](https://github.com/wazuh/wazuh-ansible/pull/1916))

View File

@ -59,7 +59,7 @@
<location>{{ localfile.location }}</location> <location>{{ localfile.location }}</location>
{% if localfile.format == 'eventchannel' %} {% if localfile.format == 'eventchannel' %}
{% if localfile.only_future_events is defined %} {% if localfile.only_future_events is defined %}
<only-future-events>{{ localfile.only_future_events }}</only_future_events> <only-future-events>{{ localfile.only_future_events }}</only-future-events>
{% endif %} {% endif %}
{% if localfile.query is defined %} {% if localfile.query is defined %}
<query>{{ localfile.query }}</query> <query>{{ localfile.query }}</query>