On Thu, Mar 10, 2011 at 10:29:47PM +0100, Lennart Poettering <[email protected]> wrote: > Hmm, prefdm is not supposed to be standardized name. It's something > fedora and mandriva specific, and hence stored in the distro-specific > dirs.
Exactly, that's why I added the service file in the corresponding subdir, so other distros won't be affected by the change. > Since frugalware uses a completely different script (/etc/rc.d/rc.4) it > should use a more appropriate name. (What makes me wonder though: why is > that script named that way? is really everything it does start a DM?) Yeah, that rc.4 comes from Slackware. :) But it basically just reads /etc/sysconfig/desktop and starts kdm/gdm/etc, nothing else. I'm attaching an updated patch that uses directly the display-manager.service name + avoids calling intro rc.4. Thanks.
From 43b129123dd137fa3dae5f9a40e99d4f46eabe81 Mon Sep 17 00:00:00 2001 From: Miklos Vajna <[email protected]> Date: Wed, 9 Mar 2011 00:49:47 +0100 Subject: [PATCH] Add Frugalware display-manager service --- Makefile.am | 5 +++++ units/frugalware/display-manager.service | 19 +++++++++++++++++++ 2 files changed, 24 insertions(+), 0 deletions(-) create mode 100644 units/frugalware/display-manager.service diff --git a/Makefile.am b/Makefile.am index f867624..4961424 100644 --- a/Makefile.am +++ b/Makefile.am @@ -353,6 +353,11 @@ dist_systemunit_DATA += \ units/fedora/halt-local.service endif +if TARGET_FRUGALWARE +dist_systemunit_DATA += \ + units/frugalware/display-manager.service +endif + if HAVE_PLYMOUTH dist_systemunit_DATA += \ units/plymouth-start.service \ diff --git a/units/frugalware/display-manager.service b/units/frugalware/display-manager.service new file mode 100644 index 0000000..d7f237f --- /dev/null +++ b/units/frugalware/display-manager.service @@ -0,0 +1,19 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +[Unit] +Description=Display Manager +After=syslog.target local.service systemd-user-sessions.service + +Conflicts=splashy-quit.service +After=splashy-quit.service + +[Service] +EnvironmentFile=/etc/sysconfig/desktop +ExecStart=$desktop +Restart=always +RestartSec=0 -- 1.7.4.1
pgps8SX7d5AoU.pgp
Description: PGP signature
_______________________________________________ systemd-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/systemd-devel
