summaryrefslogtreecommitdiffstats
path: root/bin/schroot-create.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/schroot-create.sh')
-rwxr-xr-xbin/schroot-create.sh10
1 files changed, 2 insertions, 8 deletions
diff --git a/bin/schroot-create.sh b/bin/schroot-create.sh
index 6fff0c49..fca04f43 100755
--- a/bin/schroot-create.sh
+++ b/bin/schroot-create.sh
@@ -40,8 +40,6 @@ if [ -z "$CHROOT_TARGET" ]; then
exit 1
fi
-export CURDIR=$(pwd)
-
bootstrap() {
mkdir -p "$CHROOT_TARGET/etc/dpkg/dpkg.cfg.d"
echo force-unsafe-io > "$CHROOT_TARGET/etc/dpkg/dpkg.cfg.d/02dpkg-unsafe-io"
@@ -93,12 +91,8 @@ sudo tee /etc/schroot/chroot.d/jenkins-"$TARGET" <<-__END__
union-type=aufs
__END__
-cd /tmp
-
-schroot -c "source:jenkins-$TARGET" -u root -- apt-get update
+schroot --directory /root -c "source:jenkins-$TARGET" -u root -- apt-get update
if [ -n "$1" ]
then
- schroot -c "source:jenkins-$TARGET" -u root -- apt-get install -y --no-install-recommends "$@"
+ schroot --directory /root -c "source:jenkins-$TARGET" -u root -- apt-get install -y --no-install-recommends "$@"
fi
-
-cd $CURDIR