Compare commits

..

No commits in common. "c60520e845b13d8974b27c89552e2e9735d0d0f8" and "8712be2631fded45993b8547976d47399c607470" have entirely different histories.

14
init.sh
View File

@ -1319,15 +1319,11 @@ 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 ""
if [[ "$init_unattended_mode" == true ]]; then isQuestion "Type exactly DELETE LIBREPORTAL to confirm:"
isNotice "Unattended mode — proceeding without the DELETE LIBREPORTAL prompt." local confirm; read -r confirm
else if [[ "$confirm" != "DELETE LIBREPORTAL" ]]; then
isQuestion "Type exactly DELETE LIBREPORTAL to confirm:" isNotice "Aborted — nothing was removed."
local confirm; read -r confirm return 0
if [[ "$confirm" != "DELETE LIBREPORTAL" ]]; then
isNotice "Aborted — nothing was removed."
return 0
fi
fi fi
isHeader "Tearing down LibrePortal" isHeader "Tearing down LibrePortal"