blob: 5ecac484c2401177afebd55c9e7bbc241b27a5d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/sbin/runscript
depend() {
need localmount dbus
}
description="Lightweigh display manager"
command="/usr/sbin/lightdm"
command_background="yes"
pidfile="/var/run/lightdm.pid"
start_pre() {
checkpath --owner lightdm:lightdm --directory /var/run/lightdm
}
|