blob: d24b180e51a49695fd1667103ac92eba80b857de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/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
}
|