Hide the passwords

This commit is contained in:
2026-07-06 17:06:03 +02:00
parent fa568f794e
commit ac55feb85c
2 changed files with 25 additions and 2 deletions

View File

@@ -341,6 +341,18 @@
function managerRestartMessage(result, savedMessage) {
const restart = result.manager_restart;
if (!restart?.attempted) {
if (restart?.reason === "first_install") {
return {
message: `${savedMessage} Prima installazione: manager fis_manager non ancora avviato. Esegui ./install.sh quando sei pronto.`,
kind: "ok"
};
}
if (restart?.reason === "manager_not_running") {
return {
message: `${savedMessage} Manager fis_manager non ancora avviato. Esegui ./install.sh quando sei pronto.`,
kind: "ok"
};
}
return {
message: `${savedMessage} Nessuna modifica rilevata: restart non necessario.`,
kind: "ok"