Skip to content
This repository has been archived by the owner on Jul 26, 2023. It is now read-only.

Remove Old Wazuh APP #80

Merged
merged 1 commit into from
Dec 31, 2019
Merged
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
9 changes: 9 additions & 0 deletions cookbooks/wazuh_elastic/recipes/kibana.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,15 @@
EOH
end

bash 'Remove old Wazuh Kibana Plugin if exists' do
code <<-EOH
if [ -d /usr/share/kibana/plugins/wazuh ]
then
sudo -u kibana /usr/share/kibana/bin/kibana-plugin remove wazuh
fi
EOH
end

if platform_family?('debian', 'ubuntu')
bash 'Install Wazuh-APP (can take a while)' do
code <<-EOH
Expand Down