mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
Use keyword -<sys> instead of no<sys> to disable services on given systems. On LXC, disable acpid, klogd, mdev-mount, mdev and rdate. fixes #3699
13 lines
202 B
Plaintext
13 lines
202 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
name="busybox klogd"
|
|
command="/sbin/klogd"
|
|
command_args="${KLOGD_OPTS}"
|
|
pidfile="/var/run/klogd.pid"
|
|
|
|
depend() {
|
|
need clock hostname localmount
|
|
before net
|
|
keyword -vserver -lxc
|
|
}
|