Skip to content

Commit

Permalink
Merge pull request #107 from wazuh/update-3.8.2
Browse files Browse the repository at this point in the history
Update to Wazuh version 3.8.2
  • Loading branch information
AlfonsoRBJ authored Jan 30, 2019
2 parents bddc425 + ad24809 commit 92035c1
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
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

0 comments on commit 92035c1

Please sign in to comment.