Skip to content

Commit 0bba34c

Browse files
authored
Merge pull request #617 from wazuh/revert-609-merge-4.4
Revert `Merge 4.3 into 4.4`
2 parents 390c0ab + 877e08f commit 0bba34c

15 files changed

+18
-64
lines changed

CHANGELOG.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4-
## Wazuh Puppet v4.4.0
5-
6-
### Added
7-
8-
- Support to 4.4.0 Wazuh release.
9-
104
## Wazuh Puppet v4.3.10
115

126
### Added

VERSION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
WAZUH-PUPPET_VERSION="v4.4.0"
2-
REVISION="40400"
1+
WAZUH-PUPPET_VERSION="v4.3.10"
2+
REVISION="40323"

kitchen/test/integration/agent/agent_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
describe package('wazuh-agent') do
66
it { is_expected.to be_installed }
7-
its('version') { is_expected.to eq '4.4.0-1' }
7+
its('version') { is_expected.to eq '4.3.10-1' }
88
end
99

1010
describe service('wazuh-agent') do

kitchen/test/integration/mngr/manager_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
describe package('wazuh-manager') do
66
it { is_expected.to be_installed }
7-
its('version') { is_expected.to eq '4.4.0-1' }
7+
its('version') { is_expected.to eq '4.3.10-1' }
88
end
99

1010
# Verifying service

manifests/certificates.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Wazuh repository installation
33
class wazuh::certificates (
44
$wazuh_repository = 'packages.wazuh.com',
5-
$wazuh_version = '4.4',
5+
$wazuh_version = '4.3',
66
) {
77
file { 'Configure Wazuh Certificates config.yml':
88
owner => 'root',

manifests/dashboard.pp

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
class wazuh::dashboard (
44
$dashboard_package = 'wazuh-dashboard',
55
$dashboard_service = 'wazuh-dashboard',
6-
$dashboard_version = '4.4.0',
6+
$dashboard_version = '4.3.10',
77
$indexer_server_ip = 'localhost',
88
$indexer_server_port = '9200',
99
$dashboard_path_certs = '/etc/wazuh-dashboard/certs',
@@ -32,7 +32,6 @@
3232

3333
$manage_repos = false, # Change to true when manager is not present.
3434
) {
35-
3635
if $manage_repos {
3736
include wazuh::repo
3837

@@ -127,23 +126,4 @@
127126
hasrestart => true,
128127
name => $dashboard_service,
129128
}
130-
131-
file { ['/usr/share/wazuh-dashboard/data/wazuh/',
132-
'/usr/share/wazuh-dashboard/data/wazuh/config/']:
133-
ensure => 'directory',
134-
owner => 'wazuh-dashboard',
135-
group => 'wazuh-dashboard',
136-
mode => '0600',
137-
require => Package['wazuh-dashboard'],
138-
notify => Service['wazuh-dashboard'],
139-
}
140-
141-
file { '/usr/share/wazuh-dashboard/data/wazuh/config/wazuh.yml':
142-
owner => 'wazuh-dashboard',
143-
group => 'wazuh-dashboard',
144-
mode => '0600',
145-
content => template('wazuh/wazuh_yml.erb'),
146-
require => Package['wazuh-dashboard'],
147-
notify => Service['wazuh-dashboard'],
148-
}
149129
}

manifests/filebeat_oss.pp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
$filebeat_oss_elastic_user = 'admin',
1212
$filebeat_oss_elastic_password = 'admin',
1313
$filebeat_oss_version = '7.10.2',
14-
$$wazuh_app_version = '4.4.0_7.10.0',
15-
$wazuh_extensions_version = 'v4.4.0',
14+
$wazuh_app_version = '4.3.10_7.10.2',
15+
$wazuh_extensions_version = 'v4.3.10',
1616
$wazuh_filebeat_module = 'wazuh-filebeat-0.2.tar.gz',
1717

1818
$filebeat_fileuser = 'root',
@@ -114,4 +114,4 @@
114114
name => $filebeat_oss_service,
115115
require => Package['filebeat'],
116116
}
117-
}
117+
}

manifests/indexer.pp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
# Setup for Wazuh Indexer
33
class wazuh::indexer (
44
# opensearch.yml configuration
5-
$indexer_network_host = '0.0.0.0',
65
$indexer_cluster_name = 'wazuh-cluster',
76
$indexer_node_name = 'node-1',
87
$indexer_node_max_local_storage_nodes = '1',
98
$indexer_service = 'wazuh-indexer',
109
$indexer_package = 'wazuh-indexer',
11-
$indexer_version = '4.4.0-1',
10+
$indexer_version = '4.3.10-1',
1211
$indexer_fileuser = 'wazuh-indexer',
1312
$indexer_filegroup = 'wazuh-indexer',
1413

manifests/manager.pp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,6 @@
300300
$wazuh_api_https_use_ca = $wazuh::params_manager::wazuh_api_https_use_ca,
301301
$wazuh_api_https_ca = $wazuh::params_manager::wazuh_api_https_ca,
302302
$wazuh_api_logs_level = $wazuh::params_manager::wazuh_api_logs_level,
303-
$wazuh_api_logs_format = $wazuh::params_manager::wazuh_api_logs_format,
304303
$wazuh_api_ssl_ciphers = $wazuh::params_manager::wazuh_api_ssl_ciphers,
305304
$wazuh_api_ssl_protocol = $wazuh::params_manager::wazuh_api_ssl_protocol,
306305

@@ -324,7 +323,6 @@
324323
$remote_commands_localfile_exceptions = $::wazuh::params_manager::remote_commands_localfile_exceptions,
325324
$remote_commands_wodle = $::wazuh::params_manager::remote_commands_wodle,
326325
$remote_commands_wodle_exceptions = $::wazuh::params_manager::remote_commands_wodle_exceptions,
327-
$limits_eps = $::wazuh::params_manager::limits_eps,
328326

329327
$wazuh_api_template = $::wazuh::params_manager::wazuh_api_template,
330328

manifests/params_agent.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2015, Wazuh Inc.
22
# Wazuh-Agent configuration parameters
33
class wazuh::params_agent {
4-
$agent_package_version = '4.4.0'
4+
$agent_package_version = '4.3.10'
55
$agent_package_revision = '1'
66
$agent_service_ensure = 'running'
77
$agent_msi_download_location = 'https://packages.wazuh.com/4.x/windows'

0 commit comments

Comments
 (0)