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