diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-12 04:23:47 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-12 17:15:10 +0200 |
commit | 3059b1c1f414300332320f286bb458531394f0b0 (patch) | |
tree | 098bbddd1334965074252bb2a8bad66203cccfdc | |
parent | bbd3a7ba5c91af7f84be29429e96f15dbe36ca48 (diff) |
systemctl: at full stop after last message before shutting down
-rw-r--r-- | fixme | 4 | ||||
-rw-r--r-- | src/systemctl.c | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -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 993e1d6557..e1d4f93e6c 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; |