Hi,

On Wed, 21 Mar 2018, Hideki Yamane wrote:
> On Wed, 21 Mar 2018 18:15:06 +0900 Hideki Yamane <henr...@iijmio-mail.jp> 
> wrote:
> >  Then, how about to change it to "-nv" (no-verbose) option?
> 
>  Here's a proposed patch.

busybox's wget does not fail with this option but it also does not change
its behaviour. And we already have the verbose option to enable verbose
logging so this is really not necessary.

I think that your whole interpretation of this bug report is flawed. The bug
reporter complains of this error message:

E: Couldn't download dists/jessie/main/binary-armhf/Packages

And fixing it to include the full URL is not hard:

--- a/functions
+++ b/functions
@@ -675,7 +675,7 @@ download_release_indices () {
                        if get "$m/$path" "$pkgdest" $ext; then break; fi
                done
                if [ ! -f "$pkgdest" ]; then
-                       error 1 COULDNTDL "Couldn't download %s" "$path"
+                       error 1 COULDNTDL "Couldn't download %s" "$m/$path"
                fi
                donepkgs="$(($donepkgs + ${i#* }))"
                progress $donepkgs $totalpkgs DOWNPKGS "Downloading Packages 
files"
@@ -722,7 +722,7 @@ download_debs () {
                                        echo >>$TARGET/debootstrap/deburis "$p 
$ver $m/$fil"
                                        echo >>$TARGET/debootstrap/debpaths "$p 
$debdest"
                                else
-                                       warning COULDNTDL "Couldn't download 
package %s (ver %s arch %s)" "$p" "$ver" "$arc"
+                                       warning COULDNTDL "Couldn't download 
package %s (ver %s arch %s) at %s" "$p" "$ver" "$arc" "$m/$fil"
                                        leftover="$leftover $p"
                                fi
                        fi

I fixed another similar error message at the same time.

And this error message does not seem to be generated by debootstrap

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Support Debian LTS: https://www.freexian.com/services/debian-lts.html
Learn to master Debian: https://debian-handbook.info/get/

Reply via email to