Compare commits

...

5 Commits

Author SHA1 Message Date
Gonzalo Acuña
1cff9a8dfa Merge pull request #2036 from wazuh/fix/edr-6518-backport-4.13.0
Backport 4.13.0 changes: Modify wazuh-keystore use
2025-10-15 08:09:53 -03:00
Jesus Garcia
f5edb2d54b Update CHANGELOG 2025-10-14 11:03:53 -05:00
vcerenu
cd89f266d2 Modify wazuh-keystore use 2025-10-14 10:57:07 -05:00
vcerenu
d9206376d1 Add changelog 2025-10-14 10:57:07 -05:00
vcerenu
ae63208579 Modify wazuh-keystore use 2025-10-14 10:57:07 -05:00
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
}