[systemd-commits] 3 commits - fixme src/systemctl.c units/fedora
Lennart Poettering
lennart at kemper.freedesktop.org
Thu Aug 12 08:15:47 PDT 2010
fixme | 4 ++++
src/systemctl.c | 6 +++---
units/fedora/plymouth-quit.service | 2 +-
units/fedora/prefdm.service | 2 +-
4 files changed, 9 insertions(+), 5 deletions(-)
New commits:
commit 145b66acab96f3a51696e8402d8cb21153868d7c
Author: Lennart Poettering <lennart at poettering.net>
Date: Thu Aug 12 17:14:20 2010 +0200
unit: move prefdm after livesys
https://bugzilla.redhat.com/show_bug.cgi?id=623561
diff --git a/units/fedora/prefdm.service b/units/fedora/prefdm.service
index 49c06a6..233e00d 100644
--- a/units/fedora/prefdm.service
+++ b/units/fedora/prefdm.service
@@ -7,7 +7,7 @@
[Unit]
Description=Display Manager
-After=syslog.target haldaemon.service
+After=syslog.target haldaemon.service livesys-late.service
# On Fedora gdm/X11 is on tty1. We explicitly cancel the getty here to
# avoid any races around that.
commit 8e1e105b4550a7beb5c02d6d75748319781ae3d4
Author: Lennart Poettering <lennart at poettering.net>
Date: Thu Aug 12 04:23:54 2010 +0200
plymouth: call plymouth quit before running the getty, not after
https://bugzilla.redhat.com/show_bug.cgi?id=623430
diff --git a/units/fedora/plymouth-quit.service b/units/fedora/plymouth-quit.service
index e676eca..faf8b4d 100644
--- a/units/fedora/plymouth-quit.service
+++ b/units/fedora/plymouth-quit.service
@@ -7,7 +7,7 @@
[Unit]
Description=Terminate Plymouth Boot Screen
-After=getty at tty1.service
+Before=getty at tty1.service
[Service]
ExecStart=-/usr/bin/plymouth quit
commit 3059b1c1f414300332320f286bb458531394f0b0
Author: Lennart Poettering <lennart at poettering.net>
Date: Thu Aug 12 04:23:47 2010 +0200
systemctl: at full stop after last message before shutting down
diff --git a/fixme b/fixme
index 47fb8a8..77cbb43 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 993e1d6..e1d4f93 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;
More information about the systemd-commits
mailing list