forked from opensearch-project/OpenSearch
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '4.10.2' into merge-4.10.2-into-master
- Loading branch information
Showing
5 changed files
with
50 additions
and
16 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
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 |
---|---|---|
|
@@ -162,6 +162,7 @@ set -e | |
if command -v systemctl >/dev/null && systemctl is-active %{name}.service >/dev/null; then | ||
echo "Stop existing %{name}.service" | ||
systemctl --no-reload stop %{name}.service | ||
touch %{tmp_dir}/wazuh-indexer.restart | ||
fi | ||
if command -v systemctl >/dev/null && systemctl is-active %{name}-performance-analyzer.service >/dev/null; then | ||
echo "Stop existing %{name}-performance-analyzer.service" | ||
|
@@ -204,6 +205,15 @@ if command -v systemd-tmpfiles > /dev/null; then | |
systemd-tmpfiles --create %{name}.conf | ||
fi | ||
|
||
if [ -f %{tmp_dir}/wazuh-indexer.restart ]; then | ||
rm -f %{tmp_dir}/wazuh-indexer.restart | ||
if command -v systemctl > /dev/null; then | ||
echo "Restarting wazuh-indexer service..." | ||
systemctl restart wazuh-indexer.service > /dev/null 2>&1 | ||
exit 0 | ||
fi | ||
fi | ||
|
||
# Messages | ||
echo "### NOT starting on installation, please execute the following statements to configure wazuh-indexer service to start automatically using systemd" | ||
echo " sudo systemctl daemon-reload" | ||
|
@@ -272,8 +282,10 @@ exit 0 | |
- More info: https://documentation.wazuh.com/current/release-notes/release-4-10-2.html | ||
* Tue Jan 28 2025 support <[email protected]> - 4.10.1 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-10-1.html | ||
* Tue Nov 26 2024 support <[email protected]> - 4.10.0 | ||
* Thu Nov 28 2024 support <[email protected]> - 4.10.0 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-10-0.html | ||
* Mon Nov 04 2024 support <[email protected]> - 4.9.2 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-9-2.html | ||
* Tue Oct 15 2024 support <[email protected]> - 4.9.1 | ||
- More info: https://documentation.wazuh.com/current/release-notes/release-4-9-1.html | ||
* Thu Aug 15 2024 support <[email protected]> - 4.9.0 | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
## 2024-09-27 Version 4.9.1-rc2 Release Notes | ||
## 2024-10-15 Version 4.9.1 Release Notes | ||
|
||
## [4.9.1] | ||
### Added | ||
|