From: Harald Hoyer Date: Wed, 21 Jul 2010 11:37:23 +0000 (+0200) Subject: bootchartd: do not enable bootchartd by default X-Git-Tag: 007~73 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e13918d24a9e04322e1c7313580f53ece90daf80;p=thirdparty%2Fdracut.git bootchartd: do not enable bootchartd by default users can always add "-a bootchartd" on image creation or add it to /etc/dracut.conf.d/myconf.conf --- diff --git a/modules.d/00bootchartd/check b/modules.d/00bootchartd/check index b6914653c..dfb39474a 100644 --- a/modules.d/00bootchartd/check +++ b/modules.d/00bootchartd/check @@ -1,2 +1,5 @@ #!/bin/sh -[ -x /sbin/bootchartd ] +[ -x /sbin/bootchartd ] || exit 1 + +# do not enable bootchartd by default +exit 255