diff options
Diffstat (limited to 'src/shutdownd/shutdownd.c')
-rw-r--r-- | src/shutdownd/shutdownd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shutdownd/shutdownd.c b/src/shutdownd/shutdownd.c index d426d9833d..c0747415fd 100644 --- a/src/shutdownd/shutdownd.c +++ b/src/shutdownd/shutdownd.c @@ -136,6 +136,8 @@ static void warn_wall(usec_t n, struct sd_shutdown_command *c) { prefix = "The system is going down for reboot at "; else if (c->mode == SD_SHUTDOWN_KEXEC) prefix = "The system is going down for kexec reboot at "; + else if (c->mode == SD_SHUTDOWN_NONE) + prefix = "The system shutdown has been cancelled at "; else assert_not_reached("Unknown mode!"); @@ -354,6 +356,8 @@ int main(int argc, char *argv[]) { if (!scheduled(&b.command)) { log_info("Shutdown canceled."); + if (b.command.warn_wall) + warn_wall(0, &b.command); break; } |