mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-24 01:01:32 +01:00
12 lines
180 B
Bash
12 lines
180 B
Bash
#!/sbin/openrc-run
|
|
|
|
command="/usr/bin/$SVCNAME"
|
|
command_args="${LCDD_OPTS:--f}"
|
|
command_background=1
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
depend() {
|
|
need net
|
|
use LCDd
|
|
}
|