mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
16 lines
262 B
Plaintext
Executable File
16 lines
262 B
Plaintext
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
|
|
}
|
|
|