librelad b2db9984e6 fix(install): skip the premature step-11 WebUI update on a bootstrap install
A fresh install ran webuiLibrePortalUpdate twice back-to-back: once in
installLibrePortal step 11, then again in startScan at the end of preinstall.
The 30s time-debounce meant to collapse them is fragile (it never fired on a
recent install — >30s elapsed between the two), and debouncing is the wrong
lever anyway: startScan's pass runs AFTER scanConfigsForRandomPassword
finalises app passwords, so it — not the step-11 pass — is authoritative.

Defer the step-11 generation deterministically during a bootstrap install
(libreportal_bootstrap_install=true), leaving startScan's single pass to do the
work. Standalone reinstalls (no bootstrap flag) still generate in step 11. The
time-debounce stays as a general back-to-back backstop.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-18 18:57:15 +01:00

147 lines
4.4 KiB
Bash

#!/bin/bash
# Category : Miscellaneous
# Description : LibrePortal - WebUI Dashboard (c/t/u/s/r/i):
installLibrePortal()
{
local config_variables="$1"
if [[ "$libreportal" == *[cCtTuUsSrRiI]* ]]; then
dockerConfigSetupToContainer silent libreportal;
local app_name=$CFG_LIBREPORTAL_APP_NAME
initializeAppVariables $app_name;
fi
if [[ "$libreportal" == *[cC]* ]]; then
editAppConfig $app_name;
fi
if [[ "$libreportal" == *[uU]* ]]; then
dockerUninstallApp $app_name;
fi
if [[ "$libreportal" == *[sS]* ]]; then
dockerComposeDown $app_name;
fi
if [[ "$libreportal" == *[rR]* ]]; then
dockerComposeRestart $app_name;
fi
if [[ "$libreportal" == *[iI]* ]]; then
isHeader "Install $app_name"
((menu_number++))
echo "---- $menu_number. Copying LibrePortal source and building the image."
echo ""
installLibrePortalImageWebUI;
((menu_number++))
echo ""
echo "---- $menu_number. Setting up install folder and config file for $app_name."
echo ""
dockerConfigSetupToContainer "loud" "$app_name" "install" "$config_variables";
isSuccessful "Install folders and Config files have been setup for $app_name."
((menu_number++))
echo ""
echo "---- $menu_number. Setting up the $app_name docker-compose.yml file."
echo ""
dockerComposeSetupFile $app_name;
((menu_number++))
echo ""
echo "---- $menu_number. Randomizing WebUI login credentials."
echo ""
local webui_logins_file="$configs_dir/webui/webui_logins"
scanFileForRandomPasswordKeysUsers "$webui_logins_file"
sourceScanFiles "libreportal_configs"
isSuccessful "WebUI login credentials have been set."
((menu_number++))
echo ""
echo "---- $menu_number. Updating file permissions before starting."
echo ""
# Must run AFTER the credential rewrite above: that rewrite (as the non-root
# manager) resets webui_logins' group, dropping the container-owner group the
# rootless WebUI reads it through. This pass restores it, so it has to be the
# last ownership touch before the container starts — else the container can't
# read its own login file and exits on boot.
fixPermissionsBeforeStart $app_name;
((menu_number++))
echo ""
echo "---- $menu_number. Running the docker-compose.yml to install and start $app_name"
echo ""
dockerComposeUpdateAndStartApp $app_name install;
((menu_number++))
echo ""
echo "---- $menu_number. Running Application specific updates (if required)"
echo ""
appUpdateSpecifics $app_name;
((menu_number++))
echo ""
echo "---- $menu_number. Running Headscale setup (if required)"
echo ""
setupHeadscale $app_name;
((menu_number++))
echo ""
echo "---- $menu_number. Adding $app_name to the Apps Database table."
echo ""
databaseInstallApp $app_name;
((menu_number++))
echo ""
echo "---- $menu_number. Updating WebUI config file."
echo ""
webuiContainerSetup $app_name install;
((menu_number++))
echo ""
echo "---- $menu_number. Generating all WebUI data files."
echo ""
# On a fresh (bootstrap) install startScan runs right after this and
# regenerates every data file — crucially AFTER scanConfigsForRandomPassword
# finalises app passwords, so that later pass is the authoritative one.
# Generating here as well would just be a premature duplicate, so defer to
# it. Standalone reinstalls (no bootstrap flag) still generate here.
if [[ "$libreportal_bootstrap_install" == "true" ]]; then
isNotice "Bootstrap install — deferring WebUI data generation."
else
webuiLibrePortalUpdate;
fi
if [[ "$libreportal_bootstrap_install" != "true" ]]; then
((menu_number++))
echo ""
echo "---- $menu_number. You can find $app_name files at $containers_dir$app_name"
echo ""
echo " You can now navigate to your new service using one of the options below : "
echo ""
menuShowFinalMessages $app_name;
webuiDisplayLogins;
fi
menu_number=0
#sleep 3s
cd
fi
libreportal=n
}