Skip to content

Commit

Permalink
Merge pull request #92 from wazuh/enhancement/83-add-arch-info-assistant
Browse files Browse the repository at this point in the history
Added architecture information to assistant
  • Loading branch information
c-bordon authored Oct 2, 2024
2 parents e79c307 + 9c63d35 commit 99f78c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ All notable changes to this project will be documented in this file.

### Fixed

- None
- Added architecture information to assistant. ([#92](https://github.com/wazuh/wazuh-installation-assistant/pull/92))

### Deleted

Expand Down
2 changes: 1 addition & 1 deletion install_functions/checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function checks_arch() {
arch=$(uname -m)

if [ "${arch}" != "x86_64" ]; then
common_logger -e "Uncompatible system. This script must be run on a 64-bit system."
common_logger -e "Uncompatible system. This script must be run on a 64-bit (x86_64/AMD64) system."
exit 1
fi
}
Expand Down
2 changes: 1 addition & 1 deletion install_functions/installMain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ function main() {
exit 0
fi

common_logger "Starting Wazuh installation assistant. Wazuh version: ${wazuh_version}"
common_logger "Starting Wazuh installation assistant. Wazuh version: ${wazuh_version} (x86_64/AMD64)"
common_logger "Verbose logging redirected to ${logfile}"

# -------------- Uninstall case ------------------------------------
Expand Down

0 comments on commit 99f78c3

Please sign in to comment.