summaryrefslogtreecommitdiff
path: root/app-benchmarks/bootchart2/files/bootchart2.init
diff options
context:
space:
mode:
Diffstat (limited to 'app-benchmarks/bootchart2/files/bootchart2.init')
-rw-r--r--app-benchmarks/bootchart2/files/bootchart2.init26
1 files changed, 0 insertions, 26 deletions
diff --git a/app-benchmarks/bootchart2/files/bootchart2.init b/app-benchmarks/bootchart2/files/bootchart2.init
deleted file mode 100644
index 3e5d968c0376..000000000000
--- a/app-benchmarks/bootchart2/files/bootchart2.init
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- use localmount
-}
-
-start() {
- if /bin/grep -q "rdinitrd=/sbin/bootchartd" /proc/cmdline; then
- if /bin/pidof bootchart-collector> /dev/null 2>&1; then
- ebegin "Scheduling termination of Bootchart"
- /sbin/bootchartd start
- /sbin/bootchartd wait &
- eend $?
- fi
- else
- einfo "No bootchart process found!"
- eindent
- einfo "This script does not start bootchart, but only schedules its termination."
- einfo "Bootchart should be started from the kernel command line."
- einfo "Please check the README on how to do that."
- eoutdent
- eend 0
- fi
-}