summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/bootchart2/bootchart2/bootchartd_stop.sh
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/bootchart2/bootchart2/bootchartd_stop.sh')
-rw-r--r--meta/recipes-devtools/bootchart2/bootchart2/bootchartd_stop.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/recipes-devtools/bootchart2/bootchart2/bootchartd_stop.sh b/meta/recipes-devtools/bootchart2/bootchart2/bootchartd_stop.sh
new file mode 100644
index 0000000000..21a78877a2
--- /dev/null
+++ b/meta/recipes-devtools/bootchart2/bootchart2/bootchartd_stop.sh
@@ -0,0 +1,18 @@
1#!/bin/sh
2### BEGIN INIT INFO
3# Provides: bootchartd_stop
4# Required-Start: $remote_fs $all
5# Required-Stop:
6# Default-Start: 2 3 4 5
7# Default-Stop:
8# Short-Description: Stop bootchartd collection
9# Description: This script accompanies bootchartd from bootchart2.
10# bootchartd should stop detect the end of the boot process
11# automatically if a window manager is launched, but for
12# command-line only operating systems, this script should be
13# used instead.
14### END INIT INFO
15
16/sbin/bootchartd stop
17
18: exit 0