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

Bump Wazuh Indexer to 2.8.0 #2399

Merged
merged 26 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f3412c4
bump wazuh indexer to 2.8.0
Deblintrake09 Aug 30, 2023
1a51dab
bump version to 2.8.0 in debian rules
Deblintrake09 Aug 30, 2023
a9bc732
bump sqlite-jbdc version in debian rules
Deblintrake09 Aug 30, 2023
6922a2a
update debian rules for all files
Deblintrake09 Aug 31, 2023
f76771e
remove invalid files
Deblintrake09 Aug 31, 2023
b897d32
remove invalid files
Deblintrake09 Aug 31, 2023
5cde419
remove invalid files
Deblintrake09 Aug 31, 2023
9e7dfaa
bump wazuh dashboard to 2.8.0
Deblintrake09 Aug 31, 2023
e671831
Remove single file references
rauldpm Aug 31, 2023
d9e3253
Merge branch '2391-bump-wazuh-indexer' of github.com-work:wazuh/wazuh…
rauldpm Aug 31, 2023
a1dd7ba
Added Wazuh indexer 2.8.0
rauldpm Aug 31, 2023
c951f3c
Restore SPECS files references
rauldpm Aug 31, 2023
88243c6
bump rpm spec files permissions
Deblintrake09 Aug 31, 2023
c80e010
fix permission syntax errors
Deblintrake09 Aug 31, 2023
09718b4
Added missing files
rauldpm Aug 31, 2023
1df48b8
fix permission errors in rpm specs
Deblintrake09 Aug 31, 2023
f0f7097
Merge branch '4.6.0' into 2391-bump-wazuh-indexer
Deblintrake09 Aug 31, 2023
203f476
fix java spawnhelper persmissions
Deblintrake09 Sep 1, 2023
bb53138
fix folder persmissions
Deblintrake09 Sep 1, 2023
2ce6fbc
fix service files persmissions
Deblintrake09 Sep 1, 2023
919d42f
fix deb wazuh-indexer file persmissions
Deblintrake09 Sep 1, 2023
fad98a9
Added debian missing files
rauldpm Sep 1, 2023
a15f97c
Added specials files to SPECS %files list
rauldpm Sep 1, 2023
ca63bb6
Removed extensions directory
rauldpm Sep 1, 2023
c282740
Added aggs-matrix-stats directory
rauldpm Sep 1, 2023
27385a3
Added modules path
rauldpm Sep 1, 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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ The following table shows the references for the versions of each component.
| 4.3.x | 1.2.4 |
| 4.4.0 | 2.4.1 |
| 4.4.1 - 4.5.2 | 2.6.0 |
| 4.6.0 | 2.8.0 |

## Contribute

Expand Down
10 changes: 8 additions & 2 deletions stack/indexer/base/builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ architecture="$1"
revision="$2"
future="$3"
reference="$4"
opensearch_version="2.6.0"
opensearch_version="2.8.0"
base_dir=/opt/wazuh-indexer-base

# -----------------------------------------------------------------------------
Expand Down Expand Up @@ -58,7 +58,7 @@ find -type l -exec rm -rf {} \;
find -name "*.bat" -exec rm -rf {} \;
rm -rf README.md manifest.yml opensearch-tar-install.sh logs
sed -i 's|OPENSEARCH_DISTRIBUTION_TYPE=tar|OPENSEARCH_DISTRIBUTION_TYPE=rpm|g' bin/opensearch-env
sed -i 's|"$OPENSEARCH_HOME"/config|/etc/wazuh-indexer|g' bin/opensearch-env
sed -i 's|"$OPENSEARCH_HOME"/config|/etc/wazuh-indexer|g' bin/opensearch-env
cp -r /root/stack/indexer/base/files/systemd-entrypoint bin/
mkdir -p ./etc/wazuh-indexer/
cp -r ./config/* ./etc/wazuh-indexer/
Expand All @@ -85,6 +85,12 @@ sed -i 's|-SNAPSHOT||g' "${base_dir}"/modules/systemd/plugin-descriptor.properti
cd "${base_dir}"
rm -rf OpenSearch

find -type d -exec chmod 750 {} \;
find -type f -perm 644 -exec chmod 640 {} \;
find -type f -perm 664 -exec chmod 660 {} \;
find -type f -perm 755 -exec chmod 750 {} \;
find -type f -perm 744 -exec chmod 740 {} \;

# -----------------------------------------------------------------------------

# Base output
Expand Down
Loading
Loading