Merge pull request #1930 from wazuh/bug/1918-Fix_mismatched_closing_tags

Fix mismatched tags in .j2 template files
This commit is contained in:
Gonzalo Acuña 2026-02-03 15:14:32 -03:00 committed by GitHub
commit 2e1d9611da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 5 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))
- Address Misconfiguration of indexer_cluster_nodes Parameter ([#1929](https://github.com/wazuh/wazuh-ansible/pull/1929)) - Address Misconfiguration of indexer_cluster_nodes Parameter ([#1929](https://github.com/wazuh/wazuh-ansible/pull/1929))
- 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

@ -410,7 +410,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>
@ -448,7 +448,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>
@ -487,7 +487,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>
@ -614,7 +614,7 @@
{% if wazuh_manager_config.authd.force.enabled is not none %} {% if wazuh_manager_config.authd.force.enabled is not none %}
<enabled>{{wazuh_manager_config.authd.force.enabled}}</enabled> <enabled>{{wazuh_manager_config.authd.force.enabled}}</enabled>
{% else %} {% else %}
<enabledport>yes</enabled> <enabledport>yes</enabledport>
{% endif %} {% endif %}
{% if wazuh_manager_config.authd.force.key_mismatch is not none %} {% if wazuh_manager_config.authd.force.key_mismatch is not none %}
<key_mismatch>{{wazuh_manager_config.authd.force.key_mismatch}}</key_mismatch> <key_mismatch>{{wazuh_manager_config.authd.force.key_mismatch}}</key_mismatch>

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>