-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2651 from wazuh/merge-4.8.0-into-4.8.1
Merge 4.8.0 into 4.8.1
- Loading branch information
Showing
31 changed files
with
455 additions
and
304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
skip_after_successful_duplicate: 'false' | ||
|
||
- name: Wait for the package to be built | ||
uses: ArcticLampyrid/[email protected].3 | ||
uses: ArcticLampyrid/[email protected].4 | ||
id: wait-for-build | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -68,7 +68,7 @@ jobs: | |
if: steps.changes.outputs.deb_packages == 'true' || (steps.changes.outputs.deb_images_agent_i386 == 'true' && matrix.ARCHITECTURE == 'i386') || (steps.changes.outputs.deb_images_amd64 == 'true' && matrix.ARCHITECTURE == 'amd64') | ||
run: | | ||
VERSION=$(cat $GITHUB_WORKSPACE/VERSION) | ||
REVISION=$( echo ${{ github.head_ref }}) | ||
REVISION=$( echo ${{ github.head_ref }} | sed 's/-/./g; s/\//./g' ) | ||
echo "PACKAGE_NAME=wazuh-${{ matrix.type }}_${VERSION}-${REVISION}_${{ matrix.arch }}.deb" >> $GITHUB_ENV | ||
- name: Download the Wazuh ${{ matrix.type }} package for ${{ matrix.system.NAME }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
skip_after_successful_duplicate: 'false' | ||
|
||
- name: Wait for the package to be built | ||
uses: ArcticLampyrid/[email protected].3 | ||
uses: ArcticLampyrid/[email protected].4 | ||
id: wait-for-build | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -77,7 +77,7 @@ jobs: | |
if : steps.changes.outputs.rpm_packages == 'true' || (steps.changes.outputs.rpm_images_agent_i386 == 'true' && matrix.ARCHITECTURE == 'i386') || (steps.changes.outputs.rpm_images_x86_64 == 'true' && matrix.ARCHITECTURE == 'x86_64') | ||
run: | | ||
VERSION=$(cat $GITHUB_WORKSPACE/VERSION) | ||
REVISION=$( echo ${{ github.head_ref }} | sed 's/-/./g' ) | ||
REVISION=$( echo ${{ github.head_ref }} | sed 's/-/./g; s/\//./g' ) | ||
echo "PACKAGE_NAME=wazuh-${{ matrix.type }}-${VERSION}-${REVISION}.${{matrix.system.ARCH}}.rpm" >> $GITHUB_ENV | ||
- name: Download the Wazuh ${{ matrix.type }} package for ${{ matrix.system.NAME }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -294,11 +294,11 @@ rm -fr %{buildroot} | |
- More info: https://documentation.wazuh.com/current/release-notes/release-4-8-1.html | ||
* Fri Dec 15 2023 support <[email protected]> - 4.8.0 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-8-0.html | ||
* Thu Dec 07 2023 support <[email protected]> - 4.7.1 | ||
* Tue Dec 05 2023 support <[email protected]> - 4.7.1 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-7-1.html | ||
* Tue Nov 21 2023 support <[email protected]> - 4.7.0 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-7-0.html | ||
* Tue Oct 24 2023 support <[email protected]> - 4.6.0 | ||
* Tue Oct 31 2023 support <[email protected]> - 4.6.0 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-6-0.html | ||
* Tue Oct 24 2023 support <[email protected]> - 4.5.4 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-5-4.html | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,13 +13,13 @@ wazuh-agent (4.7.1-RELEASE) stable; urgency=low | |
|
||
* More info: https://documentation.wazuh.com/current/release-notes/release-4-7-1.html | ||
|
||
-- Wazuh, Inc <[email protected]> Thu, 07 Dec 2023 00:00:00 +0000 | ||
-- Wazuh, Inc <[email protected]> Tue, 05 Dec 2023 00:00:00 +0000 | ||
|
||
wazuh-agent (4.7.0-RELEASE) stable; urgency=low | ||
|
||
* More info: https://documentation.wazuh.com/current/release-notes/release-4-7-0.html | ||
|
||
-- Wazuh, Inc <[email protected]> Tue, 21 Nov 2023 00:00:00 +0000 | ||
-- Wazuh, Inc <[email protected]> Tue, 05 Nov 2023 00:00:00 +0000 | ||
|
||
wazuh-agent (4.6.0-RELEASE) stable; urgency=low | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,13 +13,13 @@ wazuh-manager (4.7.1-RELEASE) stable; urgency=low | |
|
||
* More info: https://documentation.wazuh.com/current/release-notes/release-4-7-1.html | ||
|
||
-- Wazuh, Inc <[email protected]> Thu, 07 Dec 2023 00:00:00 +0000 | ||
-- Wazuh, Inc <[email protected]> Tue, 05 Dec 2023 00:00:00 +0000 | ||
|
||
wazuh-manager (4.7.0-RELEASE) stable; urgency=low | ||
|
||
* More info: https://documentation.wazuh.com/current/release-notes/release-4-7-0.html | ||
|
||
-- Wazuh, Inc <[email protected]> Tue, 21 Nov 2023 00:00:00 +0000 | ||
-- Wazuh, Inc <[email protected]> Tue, 05 Nov 2023 00:00:00 +0000 | ||
|
||
wazuh-manager (4.6.0-RELEASE) stable; urgency=low | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -629,11 +629,11 @@ rm -fr %{buildroot} | |
- More info: https://documentation.wazuh.com/current/release-notes/release-4-8-1.html | ||
* Fri Dec 15 2023 support <[email protected]> - 4.8.0 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-8-0.html | ||
* Thu Dec 07 2023 support <[email protected]> - 4.7.1 | ||
* Tue Dec 05 2023 support <[email protected]> - 4.7.1 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-7-1.html | ||
* Tue Nov 21 2023 support <[email protected]> - 4.7.0 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-7-0.html | ||
* Tue Oct 24 2023 support <[email protected]> - 4.6.0 | ||
* Tue Oct 31 2023 support <[email protected]> - 4.6.0 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-6-0.html | ||
* Tue Oct 24 2023 support <[email protected]> - 4.5.4 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-5-4.html | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,7 +115,7 @@ mkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/packages_files/manager_installation_ | |
mkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/{applications,generic} | ||
mkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/amzn/{1,2,2023} | ||
mkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/centos/{8,7,6,5} | ||
mkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/darwin/{15,16,17,18,19,20,21,22} | ||
mkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/darwin/{15,16,17,18,19,20,21,22,23} | ||
mkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/debian/{7,8,9,10,11} | ||
mkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/ubuntu/{12,14,16,18,20,22}/04 | ||
mkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/rhel/{9,8,7,6,5} | ||
|
@@ -334,6 +334,9 @@ fi | |
rm -f %{_localstatedir}/etc/shared/ar.conf >/dev/null 2>&1 | ||
rm -f %{_localstatedir}/etc/shared/merged.mg >/dev/null 2>&1 | ||
|
||
# Set merged.mg permissions to new ones | ||
find %{_localstatedir}/etc/shared/ -type f -name 'merged.mg' -exec chmod 644 {} \; | ||
|
||
#AlmaLinux | ||
if [ -r "/etc/almalinux-release" ]; then | ||
DIST_NAME=almalinux | ||
|
@@ -787,6 +790,8 @@ rm -fr %{buildroot} | |
%attr(640, root, wazuh) %config(missingok) %{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/darwin/21/* | ||
%dir %attr(750, wazuh, wazuh) %config(missingok) %{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/darwin/22 | ||
%attr(640, root, wazuh) %config(missingok) %{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/darwin/22/* | ||
%dir %attr(750, wazuh, wazuh) %config(missingok) %{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/darwin/23 | ||
%attr(640, root, wazuh) %config(missingok) %{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/darwin/23/* | ||
%dir %attr(750, wazuh, wazuh) %config(missingok) %{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/debian | ||
%attr(640, root, wazuh) %config(missingok) %{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/debian/* | ||
%dir %attr(750, wazuh, wazuh) %config(missingok) %{_localstatedir}/tmp/sca-%{version}-%{release}-tmp/rhel | ||
|
@@ -852,11 +857,11 @@ rm -fr %{buildroot} | |
- More info: https://documentation.wazuh.com/current/release-notes/release-4-8-1.html | ||
* Fri Dec 15 2023 support <[email protected]> - 4.8.0 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-8-0.html | ||
* Thu Dec 07 2023 support <[email protected]> - 4.7.1 | ||
* Tue Dec 05 2023 support <[email protected]> - 4.7.1 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-7-1.html | ||
* Tue Nov 21 2023 support <[email protected]> - 4.7.0 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-7-0.html | ||
* Tue Oct 24 2023 support <[email protected]> - 4.6.0 | ||
* Tue Oct 31 2023 support <[email protected]> - 4.6.0 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-6-0.html | ||
* Tue Oct 24 2023 support <[email protected]> - 4.5.4 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-5-4.html | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.