dracut : remove extraneous output to screen during execution
authorQuentin Armitage <quentin@armitage.org.uk>
Thu, 17 Sep 2009 15:48:02 +0000 (17:48 +0200)
committerHarald Hoyer <harald@redhat.com>
Thu, 17 Sep 2009 15:48:02 +0000 (17:48 +0200)
dracut

diff --git a/dracut b/dracut
index f2bd271..b96ad5e 100755 (executable)
--- a/dracut
+++ b/dracut
@@ -198,7 +198,6 @@ for moddir in "$dsrc/modules.d"/[0-9][0-9]*; do
     fi
 done
 unset moddir
-echo $mods_to_load
 
 ## final stuff that has to happen
 
@@ -254,7 +253,7 @@ if [[ $do_strip = yes ]] ; then
     done
 fi
 
-( cd "$initdir"; find . |cpio -R 0:0 -H newc -o |gzip -9 > "$outfile"; )
+( cd "$initdir"; find . |cpio -R 0:0 -H newc -o --quiet |gzip -9 > "$outfile"; )
 
 [[ $beverbose = yes ]] && ls -lh "$outfile"