summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2017-12-02 17:59:59 +0100
committerMichael Palimaka <kensington@gentoo.org>2017-12-07 00:25:04 +1100
commit5095b13905b38015be18a2281936ff08c785f092 (patch)
treeb65b48d62144de5bff543520d606bc93191e755a /app-emulation
parentapp-admin/system-tools-backends: remove unused file (diff)
downloadgentoo-5095b13905b38015be18a2281936ff08c785f092.tar.gz
gentoo-5095b13905b38015be18a2281936ff08c785f092.tar.bz2
gentoo-5095b13905b38015be18a2281936ff08c785f092.zip
app-emulation/cadvisor: remove unused file
Closes: https://github.com/gentoo/gentoo/pull/6403
Diffstat (limited to 'app-emulation')
-rw-r--r--app-emulation/cadvisor/files/cadvisor.initd18
1 files changed, 0 insertions, 18 deletions
diff --git a/app-emulation/cadvisor/files/cadvisor.initd b/app-emulation/cadvisor/files/cadvisor.initd
deleted file mode 100644
index 19e36b2c81a5..000000000000
--- a/app-emulation/cadvisor/files/cadvisor.initd
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 2016-2017 Gentoo Foundation
-# 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/${SVCNAME}.pid"}
-user=${user:-${SVCNAME}}
-group=${group:-${SVCNAME}}
-
-command="/usr/bin/cadvisor"
-command_background="true"
-start_stop_daemon_args="--user ${user} --group ${group} \
- --stdout /var/log/${SVCNAME}/${SVCNAME}.log \
- --stderr /var/log/${SVCNAME}/${SVCNAME}.log"
-
-depend() {
- after net
-}