Merge pull request #1569 from wazuh/bug/1564-fix-typos-entrypoint

Fix typos into Wazuh manager entrypoint
This commit is contained in:
Gonzalo Acuña
2024-10-10 12:09:32 -03:00
committed by GitHub
3 changed files with 19 additions and 4 deletions
+17 -2
View File
@@ -1,10 +1,25 @@
# Change Log
All notable changes to this project will be documented in this file.
## Wazuh Docker v4.9.1
## [4.9.1]
### Added
- Update Wazuh to version [4.9.1](https://github.com/wazuh/wazuh/blob/v4.9.1/CHANGELOG.md#v491)
- None
### Changed
- None
### Fixed
- Fix typos into Wazuh manager entrypoint ([#1569](https://github.com/wazuh/wazuh-docker/pull/1569))
### Deleted
- None
## Wazuh Docker v4.9.0
### Added
@@ -51,7 +51,7 @@ mount_permanent_data() {
print "Installing ${permanent_dir}"
exec_cmd "cp -a ${data_tmp}. ${permanent_dir}"
else
print "The path ${permanent_dir} is empty, skiped"
print "The path ${permanent_dir} is empty, skipped"
fi
fi
done
@@ -4,7 +4,7 @@
set -e
if [ "$INDEXER_URL" != "" ]; then
>&2 echo "Customize Elasticsearch ouput IP"
>&2 echo "Customize Elasticsearch output IP"
sed -i "s|hosts:.*|hosts: ['$INDEXER_URL']|g" /etc/filebeat/filebeat.yml
fi