summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_setup_schroot.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/reproducible_setup_schroot.sh')
-rwxr-xr-xbin/reproducible_setup_schroot.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/reproducible_setup_schroot.sh b/bin/reproducible_setup_schroot.sh
index 1b45fc78..a0d3a8b6 100755
--- a/bin/reproducible_setup_schroot.sh
+++ b/bin/reproducible_setup_schroot.sh
@@ -52,6 +52,9 @@ bootstrap() {
fi
echo "deb-src $MIRROR $SUITE main" | sudo tee -a $CHROOT_TARGET/etc/apt/sources.list > /dev/null
+ # things break without /proc
+ sudo mount --bind /proc $CHROOT_TARGET/proc
+
sudo chroot $CHROOT_TARGET apt-get update
if [ -n "$1" ] ; then
set -x
@@ -99,6 +102,8 @@ EOF
rm $TMPFILE
sudo chroot $CHROOT_TARGET apt-get update
fi
+
+ sudo umount -l $CHROOT_TARGET/proc
}
cleanup() {