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

Wazuh indexer 4.4.0 with Openseach 2.4.1 to 4.4 #1979

Merged
merged 5 commits into from
Dec 22, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion alpine/SPECS/wazuh-agent/APKBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pkgdesc="Wazuh helps you to gain security visibility into your infrastructure."
url="https://www.wazuh.com/"
arch="${architecture}"
license="GPL"
depends="bash busybox procps"
depends="busybox procps"
verdx marked this conversation as resolved.
Show resolved Hide resolved
makedepends="make cmake git openssl-dev libgcc gcc automake autoconf libtool"
checkdepends=""
install="${pkgname}.pre-install ${pkgname}.post-install ${pkgname}.pre-upgrade ${pkgname}.post-upgrade ${pkgname}.pre-deinstall ${pkgname}.post-deinstall"
Expand Down
4 changes: 3 additions & 1 deletion stack/indexer/base/builder.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -x
verdx marked this conversation as resolved.
Show resolved Hide resolved

# Wazuh-indexer base builder
# Copyright (C) 2022, Wazuh Inc.
#
Expand All @@ -14,7 +16,7 @@ architecture="$1"
revision="$2"
future="$3"
reference="$4"
opensearch_version="2.3.0"
opensearch_version="2.4.1"
base_dir=/opt/wazuh-indexer-base

# -----------------------------------------------------------------------------
Expand Down
476 changes: 265 additions & 211 deletions stack/indexer/deb/debian/rules

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions stack/indexer/deb/docker/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ FROM debian:8

ENV DEBIAN_FRONTEND noninteractive

# Installing necessary packages
RUN apt-get update && apt-get install -y apt-utils && \
apt-get install -y \
apt-get install -y --force-yes \
curl sudo wget expect gnupg build-essential \
devscripts equivs selinux-basics procps gawk

Expand Down
2 changes: 1 addition & 1 deletion stack/indexer/rpm/build_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# License (version 2) as published by the FSF - Free Software
# Foundation.

set -e
set -ex
verdx marked this conversation as resolved.
Show resolved Hide resolved

current_path="$( cd $(dirname $0) ; pwd -P )"
architecture="x86_64"
Expand Down
2 changes: 2 additions & 0 deletions stack/indexer/rpm/builder.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -x
verdx marked this conversation as resolved.
Show resolved Hide resolved

# Wazuh package builder
# Copyright (C) 2021, Wazuh Inc.
#
Expand Down
474 changes: 263 additions & 211 deletions stack/indexer/rpm/wazuh-indexer.spec

Large diffs are not rendered by default.