mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 18:26:44 +02:00
15 lines
280 B
Bash
15 lines
280 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="busybox klogd"
|
|
command="/sbin/klogd"
|
|
command_args="${KLOGD_OPTS} -n"
|
|
command_user="klogd"
|
|
pidfile="/run/klogd.pid"
|
|
command_background=true
|
|
capabilities="^cap_syslog"
|
|
|
|
depend() {
|
|
need clock hostname localmount logger
|
|
before net
|
|
keyword -vserver -lxc
|
|
}
|