From: Lennart Poettering Date: Thu, 12 Aug 2010 02:23:47 +0000 (+0200) Subject: systemctl: at full stop after last message before shutting down X-Git-Tag: v8~109 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=3059b1c1f414300332320f286bb458531394f0b0 systemctl: at full stop after last message before shutting down --- 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;