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 /src/systemctl.c | |
parent | bbd3a7ba5c91af7f84be29429e96f15dbe36ca48 (diff) |
systemctl: at full stop after last message before shutting down
Diffstat (limited to 'src/systemctl.c')
-rw-r--r-- | src/systemctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; |