]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
bootchartd: do not enable bootchartd by default
authorHarald Hoyer <harald@redhat.com>
Wed, 21 Jul 2010 11:37:23 +0000 (13:37 +0200)
committerHarald Hoyer <harald@redhat.com>
Wed, 21 Jul 2010 11:37:23 +0000 (13:37 +0200)
users can always add "-a bootchartd" on image creation or add it
to /etc/dracut.conf.d/myconf.conf

modules.d/00bootchartd/check

index b6914653c7e0263bc94a1e6c1e4d0f20efefcf7a..dfb39474af8679062749c0bc3bef73218a8b0327 100644 (file)
@@ -1,2 +1,5 @@
 #!/bin/sh
-[ -x /sbin/bootchartd ]
+[ -x /sbin/bootchartd ] || exit 1
+
+# do not enable bootchartd by default
+exit 255