lightdm: fix the openrc service, provide a session wrapper. It's usable now...

This commit is contained in:
Juan RP
2011-02-16 16:47:29 +01:00
parent 573cb2351f
commit be22fb70c2
2 changed files with 23 additions and 0 deletions

View File

@@ -7,3 +7,17 @@ depend()
{
need dbus localmount
}
start()
{
ebegin "Starting ${name}"
start-stop-daemon --start --quiet --background --exec ${command}
eend $?
}
stop()
{
ebegin "Stopping ${name}"
start-stop-daemon --stop --exec ${command}
eend $?
}