base-install-scripts/arch-chroot.in

37 lines
793 B
Plaintext
Raw Normal View History

2012-06-17 13:44:55 -07:00
#!/bin/bash
shopt -s extglob
m4_include(common)
2012-06-17 13:44:55 -07:00
2012-06-17 14:52:39 -07:00
usage() {
cat <<EOF
usage: ${0##*/} chroot-dir [command]
2012-11-12 18:00:09 -08:00
-h Print this help message
If 'command' is unspecified, ${0##*/} will launch /bin/sh.
2012-06-17 14:52:39 -07:00
EOF
}
2012-06-17 13:44:55 -07:00
if [[ -z $1 || $1 = @(-h|--help) ]]; then
2012-06-17 14:52:39 -07:00
usage
2012-06-17 13:44:55 -07:00
exit $(( $# ? 0 : 1 ))
fi
(( EUID == 0 )) || die 'This script must be run with root privileges'
chrootdir=$1
shift
2012-06-17 14:52:39 -07:00
[[ -d $chrootdir ]] || die "Can't create chroot on non-directory %s" "$chrootdir"
2012-06-17 13:44:55 -07:00
trap '{ api_fs_umount "$chrootdir"; umount "$chrootdir/etc/resolv.conf"; } 2>/dev/null' EXIT
api_fs_mount "$chrootdir" || die "failed to setup API filesystems in chroot %s" "$chrootdir"
mount -B /etc/resolv.conf "$chrootdir/etc/resolv.conf"
2012-06-17 13:44:55 -07:00
SHELL=/bin/sh chroot "$chrootdir" "$@"
umount "$chrootdir/etc/resolv.conf"