#!/bin/bash # LibrePortal WebUI Setup Lock Removal # Removes setup lock file after update completion webuiRemoveSetupLock() { local lock_file="$containers_dir/libreportal/frontend/data/setup.lock" if [ -f "$lock_file" ]; then rm "$lock_file" fi }