mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
18 lines
527 B
Plaintext
18 lines
527 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 2016-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
description="cAdvisor - Analyzes resource usage and performance characteristics of running containers"
|
|
pidfile=${pidfile:-"/run/${RC_SVCNAME}.pid"}
|
|
command_user=${user:-${RC_SVCNAME}}:${group:-${RC_SVCNAME}}
|
|
output_log=/var/log/${RC_SVCNAME}/${RC_SVCNAME}.log
|
|
error_log=/var/log/${RC_SVCNAME}/${RC_SVCNAME}.log
|
|
|
|
command="/usr/bin/cadvisor"
|
|
command_background="true"
|
|
|
|
depend() {
|
|
after net
|
|
use docker
|
|
}
|