From db74c782bf8b63949ecfc0b814cde5c3b6300640 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 13 Aug 2023 11:38:30 +0200 Subject: [PATCH] Update 99-run.sh --- webtrees/rootfs/etc/cont-init.d/99-run.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webtrees/rootfs/etc/cont-init.d/99-run.sh b/webtrees/rootfs/etc/cont-init.d/99-run.sh index efffd0127..0517da122 100755 --- a/webtrees/rootfs/etc/cont-init.d/99-run.sh +++ b/webtrees/rootfs/etc/cont-init.d/99-run.sh @@ -20,7 +20,7 @@ case $(bashio::config 'DB_TYPE') in # Use sqlite sqlite) - bashio::log.info "Using a local sqlite database $WEBTREES_HOME/$DB_NAME please wait then login. Default credentials : $WT_USER : $WT_PASS" + bashio::log.info "Using a local sqlite database $WEBTREES_HOME/$DB_NAME" ;; mariadb_addon) @@ -49,7 +49,7 @@ case $(bashio::config 'DB_TYPE') in ;; external) - bashio::log.info "Using an external database, please populate all required fields in the config.yaml according to dovumentation" + bashio::log.info "Using an external database, please populate all required fields in the config.yaml according to documentation" ;; esac @@ -155,6 +155,7 @@ DB_NAME=$(echo "$DB_NAME" | tr -d '"') bashio::log.info "Data is stored in $WEBTREES_HOME" bashio::log.info "Webui can be accessed at : $BASE_URL" +bashio::log.info "If it is your first boot, the start-up wizard will open" # Execute main script echo "python3 /docker-entrypoint.py"