From 3059b1c1f414300332320f286bb458531394f0b0 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 12 Aug 2010 04:23:47 +0200 Subject: [PATCH 1/1] systemctl: at full stop after last message before shutting down --- fixme | 4 ++++ src/systemctl.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/fixme b/fixme index 47fb8a8c8..77cbb43fb 100644 --- a/fixme +++ b/fixme @@ -73,6 +73,10 @@ * plymouth different shut down msgs +* plymouth after/before getty? + +* in systemctl show sysv init script path + External: * sysv functions should color when stdout is tty, not stdin diff --git a/src/systemctl.c b/src/systemctl.c index 993e1d655..e1d4f93e6 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -4604,17 +4604,17 @@ static int halt_main(DBusConnection *bus) { switch (arg_action) { case ACTION_HALT: - log_info("Halting"); + log_info("Halting."); reboot(RB_HALT_SYSTEM); break; case ACTION_POWEROFF: - log_info("Powering off"); + log_info("Powering off."); reboot(RB_POWER_OFF); break; case ACTION_REBOOT: - log_info("Rebooting"); + log_info("Rebooting."); reboot(RB_AUTOBOOT); break; -- 2.30.2