From fb8dfc9435f7edbb64b8b02738be25ae7aa8a079 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Mon, 2 Jun 2025 11:22:51 +0200 Subject: [PATCH] Update tools.func --- misc/tools.func | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc/tools.func b/misc/tools.func index 1de7ea31..21a88507 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -303,7 +303,7 @@ install_mysql() { NEED_INSTALL=true fi else - msg_info "MySQL not found, installing $MYSQL_VERSION" + msg_info "Setup MySQL $MYSQL_VERSION" NEED_INSTALL=true fi @@ -321,6 +321,7 @@ install_mysql() { export DEBIAN_FRONTEND=noninteractive $STD apt-get update $STD apt-get install -y mysql-server + msg_ok "Installed MySQL $MYSQL_VERSION" fi }