645-tag4.2.4-to-master
This commit is contained in:
commit
0d2d63271a
@ -7,11 +7,17 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
- Update to [Wazuh v4.3.0](https://github.com/wazuh/wazuh/blob/v4.3.0/CHANGELOG.md#v430)
|
- Update to [Wazuh v4.3.0](https://github.com/wazuh/wazuh/blob/v4.3.0/CHANGELOG.md#v430)
|
||||||
|
|
||||||
|
## [v4.2.4]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Update to [Wazuh v4.2.4](https://github.com/wazuh/wazuh/blob/v4.2.4/CHANGELOG.md#v424)
|
||||||
|
|
||||||
## [v4.2.3]
|
## [v4.2.3]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Update to [Wazuh v4.2.3](https://github.com/wazuh/wazuh/blob/v4.2.3/CHANGELOG.md#v420)
|
- Update to [Wazuh v4.2.3](https://github.com/wazuh/wazuh/blob/v4.2.3/CHANGELOG.md#v423)
|
||||||
|
|
||||||
## [v4.2.2]
|
## [v4.2.2]
|
||||||
|
|
||||||
|
|||||||
@ -1,20 +1,33 @@
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
#- name: Install OpenDistro dependencies
|
- name: Update cache
|
||||||
# apt:
|
apt:
|
||||||
# name: [
|
update_cache: yes
|
||||||
# 'unzip', 'wget', 'curl',
|
when: (ansible_facts['distribution'] == "Debian" and ansible_facts['distribution_major_version'] == "9")
|
||||||
# 'apt-transport-https', software-properties-common
|
|
||||||
# ]
|
|
||||||
# state: present
|
|
||||||
|
|
||||||
- name: Add openjdk repository
|
- name: Debian 9 (Stretch)
|
||||||
|
when: (ansible_facts['distribution'] == "Debian" and ansible_facts['distribution_major_version'] == "9")
|
||||||
|
block:
|
||||||
|
|
||||||
|
- name: Install OpenDistro dependencies
|
||||||
|
apt:
|
||||||
|
name: [
|
||||||
|
'unzip', 'wget', 'curl', 'apt-transport-https', software-properties-common
|
||||||
|
]
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: Add the repository key for Debian's Stretch Backports repository
|
||||||
|
ansible.builtin.apt_key:
|
||||||
|
keyserver: keyserver.ubuntu.com
|
||||||
|
id: 648ACFD622F3D138
|
||||||
|
|
||||||
|
- name: Add openjdk repository
|
||||||
apt_repository:
|
apt_repository:
|
||||||
repo: "{{ package_repos.apt.openjdk.baseurl }}"
|
repo: "{{ package_repos.apt.openjdk.baseurl }}"
|
||||||
state: present
|
state: present
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
when: (ansible_facts['distribution'] == "Debian" and ansible_facts['distribution_major_version'] == "9")
|
filename: 'wazuh-openjdk'
|
||||||
|
|
||||||
- name: Install openjdk-11-jdk
|
- name: Install openjdk-11-jdk
|
||||||
apt:
|
apt:
|
||||||
@ -34,6 +47,7 @@
|
|||||||
apt_repository:
|
apt_repository:
|
||||||
repo: "{{ package_repos.apt.opendistro.baseurl }}"
|
repo: "{{ package_repos.apt.opendistro.baseurl }}"
|
||||||
state: present
|
state: present
|
||||||
|
filename: 'wazuh-opendistro'
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
|
|
||||||
- name: Install OpenDistro
|
- name: Install OpenDistro
|
||||||
|
|||||||
@ -17,6 +17,11 @@
|
|||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
args:
|
args:
|
||||||
chdir: /usr/share/elasticsearch/bin/
|
chdir: /usr/share/elasticsearch/bin/
|
||||||
|
register: remove_elasticsearch_performance_analyzer
|
||||||
|
failed_when:
|
||||||
|
- remove_elasticsearch_performance_analyzer.rc != 0
|
||||||
|
- '"not found" not in remove_elasticsearch_performance_analyzer.stderr'
|
||||||
|
changed_when: "remove_elasticsearch_performance_analyzer.rc == 0"
|
||||||
|
|
||||||
- name: Remove elasticsearch configuration file
|
- name: Remove elasticsearch configuration file
|
||||||
file:
|
file:
|
||||||
|
|||||||
@ -1,4 +1,8 @@
|
|||||||
---
|
---
|
||||||
|
<<<<<<< HEAD
|
||||||
|
=======
|
||||||
|
wazuh_agent_version: 4.2.4-1
|
||||||
|
>>>>>>> 4.2
|
||||||
|
|
||||||
wazuh_agent_version: 4.3.0-1
|
wazuh_agent_version: 4.3.0-1
|
||||||
|
|
||||||
@ -12,7 +16,11 @@ wazuh_custom_packages_installation_agent_rpm_url: ""
|
|||||||
|
|
||||||
wazuh_agent_sources_installation:
|
wazuh_agent_sources_installation:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
<<<<<<< HEAD
|
||||||
branch: "v4.3.0"
|
branch: "v4.3.0"
|
||||||
|
=======
|
||||||
|
branch: "v4.2.4"
|
||||||
|
>>>>>>> 4.2
|
||||||
user_language: "y"
|
user_language: "y"
|
||||||
user_no_stop: "y"
|
user_no_stop: "y"
|
||||||
user_install_type: "agent"
|
user_install_type: "agent"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user