Skip to content

Commit

Permalink
Update to Wazuh version 3.8.1 (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlfonsoRBJ authored and jesuslinares committed Jan 24, 2019
1 parent a67daf8 commit 4f6e8e4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.

## [v3.8.1]

### Changed
- Update to Wazuh version 3.8.1 ([#104](https://github.com/wazuh/wazuh-puppet/pull/104))

## [v3.8.0]

### Added
Expand Down
Binary file removed files/wazuh-agent-3.8.0-1.msi
Binary file not shown.
Binary file added files/wazuh-agent-3.8.1-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.0-1.msi':
'C:/wazuh-agent-3.8.1-1.msi':
owner => 'Administrators',
group => 'Administrators',
mode => '0774',
source => 'puppet:///modules/wazuh/wazuh-agent-3.8.0-1.msi',
source => 'puppet:///modules/wazuh/wazuh-agent-3.8.1-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.0-1.msi',
source => 'C:/wazuh-agent-3.8.1-1.msi',
install_options => [ '/q', "ADDRESS=${ossec_server_ip}", "AUTHD_SERVER=${ossec_server_ip}" ], # silent installation
require => File['C:/wazuh-agent-3.8.0-1.msi'],
require => File['C:/wazuh-agent-3.8.1-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.0-1.msi',
source => 'C:/wazuh-agent-3.8.1-1.msi',
install_options => [ '/q' ], # silent installation
require => File['C:/wazuh-agent-3.8.0-1.msi'],
require => File['C:/wazuh-agent-3.8.1-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.7.2'
$agent_package = 'Wazuh Agent 3.8.1'
$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.0",
"version": "3.8.1",
"author": "WAZUH",
"summary": "Install and configure Wazuh-HIDS client and server",
"license": "Apache-2.0",
Expand Down

0 comments on commit 4f6e8e4

Please sign in to comment.