diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-12-04 09:57:04 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-12-04 09:57:04 +0100 |
commit | 5389b608d065167780d97f490d9379aa8fa0ed38 (patch) | |
tree | 3ed3f5bd10ed2754397a0b09f76ef2daca81b864 /bin | |
parent | 817774bcda52667731834b2b910e71ff47c494c4 (diff) | |
download | jenkins.debian.net-5389b608d065167780d97f490d9379aa8fa0ed38.tar.xz |
chroot-installs: also output debootstrap command used
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/chroot-installation.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh index 4473f853..fd03964d 100755 --- a/bin/chroot-installation.sh +++ b/bin/chroot-installation.sh @@ -103,7 +103,9 @@ bootstrap() { echo force-unsafe-io > "$CHROOT_TARGET/etc/dpkg/dpkg.cfg.d/02dpkg-unsafe-io" echo "Bootstraping $1 into $CHROOT_TARGET now." + set -x sudo debootstrap $1 $CHROOT_TARGET $MIRROR + set +x prepare_bootstrap $1 execute_ctmpfile } |