call 'wget' with '-nv' instead of '-q'
authorEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Wed, 24 Mar 2004 04:43:01 +0000 (04:43 +0000)
committerEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Wed, 24 Mar 2004 04:43:01 +0000 (04:43 +0000)
git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@1346 94cd875c-1c1d-0410-91d2-eb244daf1a30

util-vserver/scripts/vserver-build.debootstrap

index 52dcd7a..e477643 100644 (file)
@@ -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