Sfoglia il codice sorgente

Merge pull request #9224 from tianon/custom-debootstrap

Allow for custom debootstrap wrappers like qemu-debootstrap in contrib/mkimage/debootstrap
Jessie Frazelle 10 anni fa
parent
commit
27127437a6
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. 4 1
      contrib/mkimage/debootstrap

+ 4 - 1
contrib/mkimage/debootstrap

@@ -15,9 +15,12 @@ done
 suite="$1"
 shift
 
+# allow for DEBOOTSTRAP=qemu-debootstrap ./mkimage.sh ...
+: ${DEBOOTSTRAP:=debootstrap}
+
 (
 	set -x
-	debootstrap "${before[@]}" "$suite" "$rootfsDir" "$@"
+	$DEBOOTSTRAP "${before[@]}" "$suite" "$rootfsDir" "$@"
 )
 
 # now for some Docker-specific tweaks