mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
19 lines
318 B
Plaintext
19 lines
318 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
name="greetd"
|
|
description="Greeter daemon"
|
|
|
|
: ${cfgfile:="/etc/greetd/config.toml"}
|
|
|
|
command=/usr/sbin/greetd
|
|
command_args="--config $cfgfile ${command_args:-}"
|
|
command_background=yes
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
required_files="$cfgfile"
|
|
|
|
depend() {
|
|
need localmount
|
|
provide display-manager
|
|
}
|