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

Merge 4.8.0 into master #812

Merged
merged 20 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
cfcfdc0
add path parameter add remove paths for commands
vcerenu Oct 12, 2023
80c106e
add path parameter add remove paths for commands
vcerenu Oct 12, 2023
3357672
Merge pull request #797 from wazuh/19607-alerts-not-displaying-on-waz…
teddytpc1 Oct 12, 2023
6e66917
Bump revision to 40701
davidcr01 Oct 13, 2023
82aa787
Merge pull request #800 from wazuh/bump-revision-40701
davidcr01 Oct 13, 2023
ad2a908
bump 4.5.4 version
vcerenu Oct 17, 2023
a1822ba
Merge pull request #803 from wazuh/bump-version-4.5.4
vcerenu Oct 17, 2023
cf8354f
Merge pull request #804 from wazuh/merge-4.6.0-into-4.7.0
teddytpc1 Oct 18, 2023
bf6e75f
Bump revision to 40510
davidcr01 Oct 19, 2023
566335f
Merge pull request #806 from wazuh/bump-revision-40510
davidcr01 Oct 19, 2023
97db575
Added v4.5.4 to CHANGELOG.md
davidcr01 Oct 23, 2023
753ce86
Merge branch '4.5.4' into merge-4.5.4-into-4.6.0
davidcr01 Oct 23, 2023
ceaa9bf
Merge pull request #808 from wazuh/merge-4.5.4-into-4.6.0
davidcr01 Oct 23, 2023
e6477f2
Merge branch '4.6.0' into merge-4.6.0-into-4.7.0
davidcr01 Oct 23, 2023
1ab303b
Merge pull request #809 from wazuh/merge-4.6.0-into-4.7.0
davidcr01 Oct 23, 2023
26d0894
Merge remote-tracking branch 'origin/4.7.0' into merge-4.7.0-into-4.7.1
davidcr01 Oct 23, 2023
448bc8c
Merge pull request #810 from wazuh/merge-4.7.0-into-4.7.1
davidcr01 Oct 23, 2023
20a855a
Merge branch '4.7.1' into merge-4.7.1-into-4.8.0
davidcr01 Oct 23, 2023
0bba8cd
Merge pull request #811 from wazuh/merge-4.7.1-into-4.8.0
davidcr01 Oct 23, 2023
856650c
Merge branch '4.8.0' into merge-4.8.0-into-master
davidcr01 Oct 23, 2023
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
Expand Up @@ -31,6 +31,12 @@ All notable changes to this project will be documented in this file.

- Support to 4.6.0 Wazuh release.

## Wazuh Puppet v4.5.4

### Added

- Support to 4.5.4 Wazuh release.

## Wazuh Puppet v4.5.3

### Added
Expand Down
3 changes: 2 additions & 1 deletion manifests/agent.pp
Original file line number Diff line number Diff line change
Expand Up @@ -577,8 +577,9 @@
${agent_auth_option_manager} ${agent_auth_option_agent} ${agent_auth_option_password} ${agent_auth_option_address}"

exec { 'agent-auth-linux':
path => ['/usr/bin', '/bin', '/usr/sbin', '/sbin'],
command => $agent_auth_command,
unless => "/bin/egrep -q '.' ${::wazuh::params_agent::keys_file}",
unless => "egrep -q '.' ${::wazuh::params_agent::keys_file}",
require => Concat['agent_ossec.conf'],
before => Service[$agent_service_name],
notify => Service[$agent_service_name],
Expand Down
8 changes: 5 additions & 3 deletions manifests/filebeat_oss.pp
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,12 @@
# Needed since GitHub can only ETAG and result in changes of the mtime everytime.
# TODO: Include file into the wazuh/wazuh-puppet project or use file { checksum => '..' } for this instead of the exec construct.
exec { 'cleanup /etc/filebeat/wazuh-template.json':
command => '/bin/rm -f /etc/filebeat/wazuh-template.json',
onlyif => '/bin/test -f /etc/filebeat/wazuh-template.json',
unless => "/bin/curl -s 'https://raw.githubusercontent.com/wazuh/wazuh/${wazuh_extensions_version}/extensions/elasticsearch/7.x/wazuh-template.json' | /bin/cmp -s '/etc/filebeat/wazuh-template.json'",
path => ['/usr/bin', '/bin', '/usr/sbin', '/sbin'],
command => 'rm -f /etc/filebeat/wazuh-template.json',
onlyif => 'test -f /etc/filebeat/wazuh-template.json',
unless => "curl -s 'https://raw.githubusercontent.com/wazuh/wazuh/${wazuh_extensions_version}/extensions/elasticsearch/7.x/wazuh-template.json' | cmp -s '/etc/filebeat/wazuh-template.json'",
}

-> file { '/etc/filebeat/wazuh-template.json':
owner => 'root',
group => 'root',
Expand Down
Loading