From: Jóhann B. Guðmundsson Date: Mon, 18 Jan 2021 11:28:06 +0000 (+0000) Subject: chore(removal): eliminate bootchart module X-Git-Tag: 052~148 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66c27a6d85d74df9af5e1cead0c9490fb074991a;p=thirdparty%2Fdracut.git chore(removal): eliminate bootchart module --- diff --git a/modules.d/00bootchart/module-setup.sh b/modules.d/00bootchart/module-setup.sh deleted file mode 100755 index 38f77a36c..000000000 --- a/modules.d/00bootchart/module-setup.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -# called by dracut -check() { - [[ "$mount_needs" ]] && return 1 - require_binaries /sbin/bootchartd || return 1 - return 255 -} - -# called by dracut -depends() { - return 0 -} - -# called by dracut -install() { - inst_symlink /init /sbin/init - inst_dir /lib/bootchart/tmpfs - - inst_multiple bootchartd bash \ - /lib/bootchart/bootchart-collector /etc/bootchartd.conf \ - accton \ - echo \ - grep \ - usleep - - inst /usr/bin/pkill /bin/pkill - inst /usr/bin/[ /bin/[ -} -