Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expect tag deleted (master) #682

Merged
merged 3 commits into from
Dec 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion roles/opendistro/opendistro-elasticsearch/tasks/Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
- name: Update cache
apt:
update_cache: yes
when: (ansible_facts['distribution'] == "Debian" and ansible_facts['distribution_major_version'] == "9")

- name: Debian 9 (Stretch)
when: (ansible_facts['distribution'] == "Debian" and ansible_facts['distribution_major_version'] == "9")
Expand Down
1 change: 0 additions & 1 deletion roles/opendistro/opendistro-kibana/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
# noqa 503
path: "{{ kibana_conf_path }}/kibana.yml"
state: absent
when: install.changed
tags: install

- import_tasks: security_actions.yml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@
- "{{ kibana_node_name }}_http.pem"
tags:
- security
when: install.changed
4 changes: 2 additions & 2 deletions roles/wazuh/ansible-wazuh-manager/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ wazuh_manager_globals:
- '^localhost.localdomain$'
- '127.0.0.53'

wazuh_manager_agent_disconnection_time: '10m'
wazuh_manager_agents_disconnection_alert_time: '0'
wazuh_manager_agent_disconnection_time: '20s'
wazuh_manager_agents_disconnection_alert_time: '100s'

## Alerts
wazuh_manager_log_level: 3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,6 @@
<command>
<name>{{ command.name }}</name>
<executable>{{ command.executable }}</executable>
{% if command.expect is defined %}
<expect>{{ command.expect }}</expect>
{% endif %}
{% if command.timeout_allowed is defined %}
<timeout_allowed>{{ command.timeout_allowed }}</timeout_allowed>
{% endif %}
Expand Down