Skip to content

Commit

Permalink
Update launcher.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbelgium authored Jan 5, 2025
1 parent 6e6b3d0 commit 991e212
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions webtrees/rootfs/etc/scripts/launcher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,21 @@
# shellcheck shell=bash
set -e

if bashio::services.available 'mysql'; then
bashio::log.green "---"
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 "Database prefix : wt_"
bashio::log.green "---"
bashio::log.green "---"
if [ ! -f "%%data_location%%/config.ini.php" ]; then
bashio::log.info "First boot : open the UI at $BASE_URL to access the start-up wizard"
if bashio::services.available 'mysql'; then
bashio::log.info "MariaDB is available, if you want to use it please fill the values below"
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 "Database prefix : wt_"
bashio::log.green "---"
else
bashio::log.info "As you don't have the MariaDB addon running, you should likely select sqlite as database, when the name webtrees"
fi
else
bashio::log.info "Webtrees started. You can access your webui at : %%baseurl%%"
fi

0 comments on commit 991e212

Please sign in to comment.