From bf84ee3c7ca8ee979c63a12d7129312e9af2cd39 Mon Sep 17 00:00:00 2001 From: Quentin Armitage Date: Thu, 17 Sep 2009 17:48:02 +0200 Subject: [PATCH] dracut : remove extraneous output to screen during execution --- dracut | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dracut b/dracut index f2bd271b..b96ad5e0 100755 --- 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"