summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_setup_archlinux_schroot.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-01-09 17:53:08 +0100
committerHolger Levsen <holger@layer-acht.org>2016-01-09 17:53:08 +0100
commit5008dc2048e839ed98e050f8a79e922b1ac07f43 (patch)
tree33d4cb7268f77f4cac2efc2d8ebfc70a452be56c /bin/reproducible_setup_archlinux_schroot.sh
parentfa67582a14dffb28963cac6d3ad9ed1ae2eb9600 (diff)
downloadjenkins.debian.net-5008dc2048e839ed98e050f8a79e922b1ac07f43.tar.xz
reproducible archlinux: simplefy schroot creation
Diffstat (limited to 'bin/reproducible_setup_archlinux_schroot.sh')
-rwxr-xr-xbin/reproducible_setup_archlinux_schroot.sh9
1 files changed, 4 insertions, 5 deletions
diff --git a/bin/reproducible_setup_archlinux_schroot.sh b/bin/reproducible_setup_archlinux_schroot.sh
index c1e3cf8a..7db0e615 100755
--- a/bin/reproducible_setup_archlinux_schroot.sh
+++ b/bin/reproducible_setup_archlinux_schroot.sh
@@ -31,9 +31,9 @@ bootstrap() {
BOOTSTRAP_TAR_GZ=$BOOTSTRAP_DATE/archlinux-bootstrap-$BOOTSTRAP_DATE-x86_64.tar.gz
echo "$(date -u) - downloading Arch Linux bootstrap.tar.gz."
curl -O $BOOTSTRAP_BASE/$BOOTSTRAP_TAR_GZ
- tar xzf archlinux-bootstrap-$BOOTSTRAP_DATE-x86_64.tar.gz
- mv root.x86_64/* $SCHROOT_TARGET || true # proc and sys have 0555 perms, thus mv will fail... also see below
- rm archlinux-bootstrap-$BOOTSTRAP_DATE-x86_64.tar.gz root.x86_64 -rf
+ tar xzf archlinux-bootstrap-$BOOTSTRAP_DATE-x86_64.tar.gz -C $SCHROOT_BASE
+ mv $SCHROOT_BASE/root.x86_$SCHROOT_BASE/$TARGET
+ rm archlinux-bootstrap-$BOOTSTRAP_DATE-x86_64.tar.gz -rf
# write the schroot config
echo "$(date -u ) - writing schroot configuration for $TARGET."
sudo tee /etc/schroot/chroot.d/jenkins-"$TARGET" <<-__END__
@@ -45,8 +45,7 @@ bootstrap() {
source-root-users=jenkins
union-type=aufs
__END__
- # finally, put it in place
- mv $SCHROOT_TARGET $SCHROOT_BASE/$TARGET
+ # finally, create missing dirs
mkdir $SCHROOT_BASE/$TARGET/proc $SCHROOT_BASE/$TARGET/sys
chmod 555 $SCHROOT_BASE/$TARGET/proc $SCHROOT_BASE/$TARGET/sys
# mktemp creates directories with 700 perms