mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +03:00
15 lines
262 B
Text
Executable file
15 lines
262 B
Text
Executable file
#!/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
|
|
}
|
|
|