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

Update to Wazuh version 3.8.2 #107

Merged
merged 3 commits into from
Jan 30, 2019
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Change Log
All notable changes to this project will be documented in this file.

## [v3.8.2]

### Changed

- Update to Wazuh version 3.8.2. ([#107](https://github.com/wazuh/wazuh-puppet/pull/107))

## [v3.8.1]

### Changed
Expand Down
Binary file removed files/wazuh-agent-3.8.1-1.msi
Binary file not shown.
Binary file added files/wazuh-agent-3.8.2-1.msi
Binary file not shown.
12 changes: 6 additions & 6 deletions manifests/client.pp
Original file line number Diff line number Diff line change
Expand Up @@ -79,29 +79,29 @@
'windows' : {

file {
'C:/wazuh-agent-3.8.1-1.msi':
'C:/wazuh-agent-3.8.2-1.msi':
owner => 'Administrators',
group => 'Administrators',
mode => '0774',
source => 'puppet:///modules/wazuh/wazuh-agent-3.8.1-1.msi',
source => 'puppet:///modules/wazuh/wazuh-agent-3.8.2-1.msi',
source_permissions => ignore
}
if ( $manage_client_keys == 'authd' ) {
package { $agent_package_name:
ensure => $agent_package_version, # lint:ignore:security_package_pinned_version
provider => 'windows',
source => 'C:/wazuh-agent-3.8.1-1.msi',
source => 'C:/wazuh-agent-3.8.2-1.msi',
install_options => [ '/q', "ADDRESS=${ossec_server_ip}", "AUTHD_SERVER=${ossec_server_ip}" ], # silent installation
require => File['C:/wazuh-agent-3.8.1-1.msi'],
require => File['C:/wazuh-agent-3.8.2-1.msi'],
}
}
else {
package { $agent_package_name:
ensure => $agent_package_version, # lint:ignore:security_package_pinned_version
provider => 'windows',
source => 'C:/wazuh-agent-3.8.1-1.msi',
source => 'C:/wazuh-agent-3.8.2-1.msi',
install_options => [ '/q' ], # silent installation
require => File['C:/wazuh-agent-3.8.1-1.msi'],
require => File['C:/wazuh-agent-3.8.2-1.msi'],
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
$keys_group = 'Administrators'

$agent_service = 'OssecSvc'
$agent_package = 'Wazuh Agent 3.8.1'
$agent_package = 'Wazuh Agent 3.8.2'
$server_service = ''
$server_package = ''
$api_service = ''
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wazuh-wazuh",
"version": "3.8.1",
"version": "3.8.2",
"author": "WAZUH",
"summary": "Install and configure Wazuh-HIDS client and server",
"license": "Apache-2.0",
Expand Down