Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dashboard ip messages #1500

Merged
merged 2 commits into from
Apr 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.

## [v4.3.0]

- Fix dashboard ip messages [#1500](https://github.com/wazuh/wazuh-packages/pull/1500)
- Improved APT locked message and retry time [#1499](https://github.com/wazuh/wazuh-packages/pull/1499)
- Fix unhandled promise for dashboard [#1497](https://github.com/wazuh/wazuh-packages/pull/1497)
- Update ova motd message 4.3 [#1494](https://github.com/wazuh/wazuh-packages/pull/1494)
- Remove service disable from RPM and Debian packages [#1471](https://github.com/wazuh/wazuh-packages/pull/1480)
- Disabled multitenancy by default in dashboard and changed the app default route [#1471](https://github.com/wazuh/wazuh-packages/pull/1471)
Expand Down
8 changes: 4 additions & 4 deletions unattended_installer/install_functions/dashboard.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,17 +121,17 @@ function dashboard_initialize() {
done
common_logger "${flag}" "Failed to connect with ${failed_nodes[*]}. Connection refused."
if [ -z "${force}" ]; then
common_logger "If want to install Wazuh dashboard without waiting for the Wazuh indexer cluster, use the -fd option"
common_logger "If you want to install Wazuh dashboard without waiting for the Wazuh indexer cluster, use the -fd option"
installCommon_rollBack
exit 1
else
common_logger "--- Summary ---"
common_logger "When Wazuh dashboard is able to connect to your Wazuh indexer cluster, you can access the web interface https://${nodes_dashboard_ip}.\n User: admin\n Password: ${u_pass}"
common_logger "When Wazuh dashboard is able to connect to your Wazuh indexer cluster, you can access the web interface https://${nodes_dashboard_ip}\n User: admin\n Password: ${u_pass}"
fi
else
common_logger "Wazuh dashboard web application initialized."
common_logger "--- Summary ---"
common_logger "You can access the web interface https://${nodes_dashboard_ip}.\n User: admin\n Password: ${u_pass}"
common_logger "You can access the web interface https://${nodes_dashboard_ip}\n User: admin\n Password: ${u_pass}"
fi

}
Expand All @@ -152,7 +152,7 @@ function dashboard_initializeAIO() {

common_logger "Wazuh dashboard web application initialized."
common_logger "--- Summary ---"
common_logger "You can access the web interface https://<wazuh-dashboard-ip>.\n User: admin\n Password: ${u_pass}"
common_logger "You can access the web interface https://<wazuh-dashboard-ip>\n User: admin\n Password: ${u_pass}"

}

Expand Down