mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
16 lines
243 B
Text
16 lines
243 B
Text
#!/sbin/openrc-run
|
|
supervisor=supervise-daemon
|
|
|
|
name="Display Manager"
|
|
description="Lightweight $name"
|
|
|
|
command=/usr/bin/lightdm
|
|
|
|
depend() {
|
|
need localmount dbus
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath --owner lightdm:lightdm --directory /run/lightdm
|
|
}
|
|
|