mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
18 lines
339 B
Plaintext
18 lines
339 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
name="cgroups manager"
|
|
description="Daemon to manage cgroups"
|
|
|
|
: ${retry:="TERM/45"}
|
|
|
|
command=/usr/sbin/cgmanager
|
|
# $OPTIONS is here for backward compatibility only
|
|
command_args="${command_args:-$OPTIONS} -m name=system"
|
|
command_background=yes
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
depend() {
|
|
need cgroups
|
|
before cgproxy
|
|
}
|