gentoo-ebuilds/app-containers/cadvisor/files/cadvisor.initd-r2
Arthur Zamarin 05334505f2
app-containers/cadvisor: add 0.53.0
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-11-12 19:39:56 +02:00

17 lines
527 B
Text

#!/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
}