summaryrefslogtreecommitdiffstats
path: root/initramfs/stage3-stuff/etc/functions
diff options
context:
space:
mode:
authorSebastian Schmelzer2009-05-29 18:32:34 +0200
committerSebastian Schmelzer2009-05-29 18:32:34 +0200
commitbd12d1064dcde75bfed6b754fc8d451a66c1b302 (patch)
treecae0158048fde95d7cb209a3c16340b1471dbd6f /initramfs/stage3-stuff/etc/functions
parentFixed installation of xserver plugin (diff)
downloadcore-bd12d1064dcde75bfed6b754fc8d451a66c1b302.tar.gz
core-bd12d1064dcde75bfed6b754fc8d451a66c1b302.tar.xz
core-bd12d1064dcde75bfed6b754fc8d451a66c1b302.zip
set quiet flag for wget (preboot)
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2907 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs/stage3-stuff/etc/functions')
-rw-r--r--initramfs/stage3-stuff/etc/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/initramfs/stage3-stuff/etc/functions b/initramfs/stage3-stuff/etc/functions
index 851ad74d..8eff711f 100644
--- a/initramfs/stage3-stuff/etc/functions
+++ b/initramfs/stage3-stuff/etc/functions
@@ -347,7 +347,7 @@ wget_get () {
echo "[wget_get] download of \"$file\" from \"$file_server\" ... failed"
return 0;
fi
- wget $file_server$file -O /tmp/$(basename $file)
+ wget -q $file_server$file -O /tmp/$(basename $file)
[ -s /tmp/$(basename $file) ] && download_successful=1
countdown=$(expr $countdown - 1)
usleep 200000