Package: debootstrap Severity: minor Tags: patch >$ sudo debootstrap --components="main,contrib,non-free" sid ./sid-test >https://cdn-aws.deb.debian.org/debian (snip) >$ cat ./sid-test/etc/apt/sources.list >deb http://deb.debian.org/debian sid main contrib non-free
Then applied below patch, --- ./debootstrap.orig 2018-03-24 16:54:32.318064960 +0900 +++ /usr/sbin/debootstrap 2018-03-24 16:54:55.197961158 +0900 @@ -663,7 +663,7 @@ if [ -e "$TARGET/etc/apt/sources.list" ]; then rm -f "$TARGET/etc/apt/sources.list" fi - if [ "${MIRRORS#http://}" != "$MIRRORS" ]; then + if [ "${MIRRORS#http*://}" != "$MIRRORS" ]; then setup_apt_sources "${MIRRORS%% *}" mv_invalid_to "${MIRRORS%% *}" else >$ sudo debootstrap --components="main,contrib,non-free" sid ./sid-test >https://cdn-aws.deb.debian.org/debian (snip) >$ cat ./sid-test/etc/apt/sources.list >deb https://cdn-aws.deb.debian.org/debian sid main contrib non-free It works as expected. -- Hideki Yamane