blob: 1f04573aca930fd85530dd30ea9485001b7035b1 (
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 lighdm:lightdm --directory /var/run/lightdm
}
|