diff --git a/unattended_installer/install_functions/dashboard.sh b/unattended_installer/install_functions/dashboard.sh index 6164425d53..006e8a2c17 100644 --- a/unattended_installer/install_functions/dashboard.sh +++ b/unattended_installer/install_functions/dashboard.sh @@ -66,7 +66,7 @@ function dashboard_copyCertificates() { function dashboard_initialize() { - common_logger "Starting Wazuh dashboard." + common_logger "Initializing Wazuh dashboard web application." installCommon_getPass "admin" j=0 @@ -122,6 +122,7 @@ function dashboard_initialize() { common_logger "When Wazuh dashboard is able to connect to your Elasticsearch 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}" fi @@ -130,7 +131,7 @@ function dashboard_initialize() { function dashboard_initializeAIO() { - common_logger "Starting Wazuh dashboard." + common_logger "Initializing Wazuh dashboard web application." installCommon_getPass "admin" until [ "$(curl -XGET https://localhost/status -uadmin:${u_pass} -k -w %{http_code} -s -o /dev/null)" -eq "200" ] || [ "${i}" -eq 12 ]; do sleep 10 @@ -142,7 +143,7 @@ function dashboard_initializeAIO() { exit 1 fi - common_logger "Wazuh dashboard started." + common_logger "Wazuh dashboard web application initialized." common_logger "--- Summary ---" common_logger "You can access the web interface https://.\n User: admin\n Password: ${u_pass}"