Merge claude/2

This commit is contained in:
librelad 2026-05-24 20:43:19 +01:00
commit c60520e845

14
init.sh
View File

@ -1319,11 +1319,15 @@ runFullUninstall()
isNotice "LEFT IN PLACE: the docker engine, docker-compose, apt-installed deps," isNotice "LEFT IN PLACE: the docker engine, docker-compose, apt-installed deps,"
isNotice "and your SSH config (so you can't get locked out)." isNotice "and your SSH config (so you can't get locked out)."
echo "" echo ""
isQuestion "Type exactly DELETE LIBREPORTAL to confirm:" if [[ "$init_unattended_mode" == true ]]; then
local confirm; read -r confirm isNotice "Unattended mode — proceeding without the DELETE LIBREPORTAL prompt."
if [[ "$confirm" != "DELETE LIBREPORTAL" ]]; then else
isNotice "Aborted — nothing was removed." isQuestion "Type exactly DELETE LIBREPORTAL to confirm:"
return 0 local confirm; read -r confirm
if [[ "$confirm" != "DELETE LIBREPORTAL" ]]; then
isNotice "Aborted — nothing was removed."
return 0
fi
fi fi
isHeader "Tearing down LibrePortal" isHeader "Tearing down LibrePortal"