From: Enrico Scholz Date: Wed, 24 Mar 2004 04:43:01 +0000 (+0000) Subject: call 'wget' with '-nv' instead of '-q' X-Git-Tag: VERSION_0_10~229 X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf689e984ee7b2a5e25f6f75d7d5a9d72dbaeb9d;p=util-vserver.git call 'wget' with '-nv' instead of '-q' git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@1346 94cd875c-1c1d-0410-91d2-eb244daf1a30 --- diff --git a/util-vserver/scripts/vserver-build.debootstrap b/util-vserver/scripts/vserver-build.debootstrap index 52dcd7a..e477643 100644 --- a/util-vserver/scripts/vserver-build.debootstrap +++ b/util-vserver/scripts/vserver-build.debootstrap @@ -58,7 +58,7 @@ function findDebootstrap read tmp <$DEBOOTSTRAP_URI case "$tmp" in (/*) ln -s "$tmp" "$dst";; - (http://*|ftp://*) $_WGET -q -O "$dst" "$tmp";; + (http://*|ftp://*) $_WGET -nv -O "$dst" "$tmp";; (*) echo $"Unsupported URI scheme '$tmp'" >&2 exit 1;; esac