~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/buildd/mount-chroot

  • Committer: Brad Crittenden
  • Date: 2011-11-17 19:41:24 UTC
  • mto: This revision was merged to the branch mainline in revision 14317.
  • Revision ID: bac@canonical.com-20111117194124-x834v6jscsknkl6y
RevertĀ 14311

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# Copyright 2009 Canonical Ltd.  This software is licensed under the
 
4
# GNU Affero General Public License version 3 (see the file LICENSE).
 
5
 
 
6
# Buildd Slave tool to mount a chroot
 
7
 
 
8
# Expects build id as arg 1, makes build-id to contain the build
 
9
 
 
10
# Needs SUDO to be set to a sudo instance for passwordless access
 
11
 
 
12
SUDO=/usr/bin/sudo
 
13
BUILDID="$1"
 
14
 
 
15
set -e
 
16
 
 
17
exec 2>&1
 
18
 
 
19
echo "Mounting chroot for build $BUILDID"
 
20
 
 
21
$SUDO mount -t proc none "$HOME/build-$BUILDID/chroot-autobuild/proc"
 
22
$SUDO mount -t devpts none "$HOME/build-$BUILDID/chroot-autobuild/dev/pts"
 
23
$SUDO mount -t sysfs none "$HOME/build-$BUILDID/chroot-autobuild/sys"
 
24
$SUDO mount -t tmpfs none "$HOME/build-$BUILDID/chroot-autobuild/dev/shm"
 
25
$SUDO cp /etc/hosts /etc/hostname /etc/resolv.conf $HOME/build-$BUILDID/chroot-autobuild/etc/