diff options
-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; |