Merge pull request #1750 from wazuh/enhancement/5142-change-wazuhkeystore-use

Modify wazuh-keystore  use
This commit is contained in:
Gonzalo Acuña
2025-03-12 09:31:23 -03:00
committed by GitHub
2 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -9,7 +9,8 @@ All notable changes to this project will be documented in this file.
### Changed
- None
- Modify wazuh-keystore use ([#1750](https://github.com/wazuh/wazuh-docker/pull/1750)) \- (wazuh-keystore)
### Fixed
@@ -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
}