Merge pull request #2036 from wazuh/fix/edr-6518-backport-4.13.0

Backport 4.13.0 changes: Modify wazuh-keystore use
This commit is contained in:
Gonzalo Acuña
2025-10-15 08:09:53 -03:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ All notable changes to this project will be documented in this file.
### Changed
- None
- Backport 4.13.0 changes: Modify wazuh-keystore use ([#2036](https://github.com/wazuh/wazuh-docker/pull/2036)) \- (wazuh-keystore)
### Fixed

View File

@@ -115,8 +115,8 @@ function_entrypoint_scripts() {
function_configure_vulnerability_detection() {
if [ "$INDEXER_PASSWORD" != "" ]; then
>&2 echo "Configuring password."
/var/ossec/bin/wazuh-keystore -f indexer -k username -v $INDEXER_USERNAME
/var/ossec/bin/wazuh-keystore -f indexer -k password -v $INDEXER_PASSWORD
echo "$INDEXER_USERNAME" | /var/ossec/bin/wazuh-keystore -f indexer -k username
echo "$INDEXER_PASSWORD" | /var/ossec/bin/wazuh-keystore -f indexer -k password
fi
}