From fd5806105e825d89ff73fe61528120eb1a286d99 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 5 Aug 2026 10:07:44 +0200 Subject: [PATCH] fix: Improve shutdown message (#2057) --- src/power.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/power.sh b/src/power.sh index 7424a6c7..a668ec77 100644 --- a/src/power.sh +++ b/src/power.sh @@ -157,7 +157,7 @@ waitForBoot() { 2) echo - error "$(app) could not boot, aborting..." + error "$(app) could not boot, terminating..." terminateQemu return 0 ;; @@ -214,7 +214,7 @@ waitForBoot() { isAlive "$pid" || return 0 [ -f "$QEMU_END" ] && return 0 - error "Timeout while waiting for QEMU to boot the machine, aborting..." + error "Timeout while waiting for QEMU to boot the machine, terminating..." terminateQemu return 0 @@ -458,7 +458,7 @@ abortDuringSetup() { # Before Windows boots from disk, ACPI may be ignored or interpreted by setup # itself. Terminate QEMU directly instead of waiting for a graceful shutdown. if [[ "${DETECTED,,}" != "reactos" ]] || [ -n "${CUSTOM:-}" ]; then - info "Cannot send ACPI signal during $(app) setup, aborting..." + info "Cannot send ACPI signal during $(app) setup, terminating..." else info "ReactOS LiveCD does not support ACPI shutdown, terminating..." fi