From 23efc317d0ce59e063408991c8814ecfef789c90 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 5 Jan 2025 11:28:26 +0100 Subject: [PATCH] Update 02-mariadb_discovery.sh --- webtrees/rootfs/etc/cont-init.d/02-mariadb_discovery.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/webtrees/rootfs/etc/cont-init.d/02-mariadb_discovery.sh b/webtrees/rootfs/etc/cont-init.d/02-mariadb_discovery.sh index 18ebda10c..b3cfb3e87 100755 --- a/webtrees/rootfs/etc/cont-init.d/02-mariadb_discovery.sh +++ b/webtrees/rootfs/etc/cont-init.d/02-mariadb_discovery.sh @@ -3,14 +3,13 @@ set -e if bashio::services.available 'mysql'; then - bashio::log.green "---" - bashio::log.yellow "MariaDB addon was found! If you want to use it, you need to use those values when doing the initial startup wizard, or modify manually the config.ini.php file in /config/data (mapped to /addon_configs/xxx-webtrees/data when accessing using a third party tool)" + bashio::log.yellow "MariaDB addon discovered on your system. If you want to use it, you need to use those values when doing the initial startup wizard, or modify manually the config.ini.php file in /config/data (mapped to /addon_configs/xxx-webtrees/data when accessing using a third party tool)" + bashio::log.blue "Host-name : $(bashio::services "mysql" "host")" + bashio::log.blue "Port : $(bashio::services "mysql" "port")" bashio::log.blue "Database user : $(bashio::services "mysql" "username")" bashio::log.blue "Database password : $(bashio::services "mysql" "password")" bashio::log.blue "Database name : webtrees" - bashio::log.blue "Host-name : $(bashio::services "mysql" "host")" - bashio::log.blue "Port : $(bashio::services "mysql" "port")" + bashio::log.blue "Database prefix : wt_" bashio::log.green "---" - fi