mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 08:51:25 +02:00
* Clarify license * Allow null passwords * Improve APKBUILD, update patches * Add -openrc subpackage
16 lines
255 B
Plaintext
Executable File
16 lines
255 B
Plaintext
Executable File
#!/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
|
|
}
|
|
|