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"