manjaro-tools/bin/chroot-run.in

129 lines
3.6 KiB
Text
Raw Normal View History

2014-11-12 02:19:58 +01:00
#!/bin/bash
2014-11-18 19:20:53 +01:00
#
2014-11-12 02:19:58 +01:00
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
version=@version@
2015-06-09 00:01:31 +02:00
LIBDIR='@libdir@'
[[ -r ${LIBDIR}/util-msg.sh ]] && source ${LIBDIR}/util-msg.sh
2015-06-09 00:01:31 +02:00
import ${LIBDIR}/util.sh
import ${LIBDIR}/util-mount.sh
2014-11-13 13:33:38 +01:00
2014-11-12 02:19:58 +01:00
working_dir=''
files=()
2015-06-03 17:53:35 +02:00
keep_mirrors=false
nosetarch=false
2014-11-12 02:19:58 +01:00
usage() {
2016-09-15 23:58:18 +02:00
echo "Usage: ${0##*/} [options] working-dir [run arguments]"
echo "A wrapper around chroot. Provides support for pacman."
echo
echo ' options:'
echo ' -C <file> Location of a pacman config file'
echo ' -M <file> Location of a makepkg config file'
echo ' -c <dir> Set pacman cache'
echo ' -f <file> Copy file from the host to the chroot'
echo ' -s Do not run setarch'
2016-09-15 23:58:18 +02:00
echo ' -r <list> Bind mountargs ro'
echo ' -w <list> Bind mountargs rw'
echo ' List format [src1:target1 ... srcN:targetN]'
2016-09-15 23:58:18 +02:00
echo ' -h This message'
exit 1
2014-11-12 02:19:58 +01:00
}
orig_argv=("$0" "$@")
2014-11-12 02:19:58 +01:00
2017-06-04 23:07:16 +02:00
opts='hC:M:c:r:w:f:s'
while getopts ${opts} arg; do
2016-09-15 23:58:18 +02:00
case "${arg}" in
2017-06-06 17:58:43 +02:00
C) pacman_conf="$OPTARG" ;;
2016-09-15 23:58:18 +02:00
M) makepkg_conf="$OPTARG" ;;
c) cache_dir="$OPTARG" ;;
f) files+=("$OPTARG") ;;
s) nosetarch=true ;;
r) bindmounts_ro=("$OPTARG") ;;
w) bindmounts_rw=("$OPTARG") ;;
2016-09-15 23:58:18 +02:00
h|?) usage ;;
*) error "invalid argument '$arg'"; usage ;;
esac
2014-11-12 02:19:58 +01:00
done
shift $(($OPTIND - 1))
(( $# < 1 )) && die 'You must specify a directory.'
check_root
2014-11-12 02:19:58 +01:00
working_dir=$(readlink -f "$1")
shift 1
[[ -z $working_dir ]] && die 'Please specify a working directory.'
if [[ -z $cache_dir ]]; then
2016-09-15 23:58:18 +02:00
cache_dirs=($(pacman -v 2>&1 | grep '^Cache Dirs:' | sed 's/Cache Dirs:\s*//g'))
2014-11-12 02:19:58 +01:00
else
2016-09-15 23:58:18 +02:00
cache_dirs=("$cache_dir")
2014-11-12 02:19:58 +01:00
fi
copy_hostconf () {
2016-09-15 23:58:18 +02:00
cp -a /etc/pacman.d/gnupg "$1/etc/pacman.d"
2014-11-12 02:19:58 +01:00
2017-06-06 17:58:43 +02:00
[[ -n $pacman_conf ]] && cp $pacman_conf "$1/etc/pacman.conf"
2016-09-15 23:58:18 +02:00
[[ -n $makepkg_conf ]] && cp $makepkg_conf "$1/etc/makepkg.conf"
local file
for file in "${files[@]}"; do
mkdir -p "$(dirname "$working_dir$file")"
cp -T "$file" "$working_dir$file"
done
2016-09-15 23:58:18 +02:00
sed -r "s|^#?\\s*CacheDir.+|CacheDir = $(echo -n ${cache_dirs[@]})|g" -i "$1/etc/pacman.conf"
2014-11-12 02:19:58 +01:00
}
chroot_extra_mount() {
2016-09-15 23:58:18 +02:00
chroot_mount "/etc/resolv.conf" "$1/etc/resolv.conf" -B
chroot_mount "${cache_dirs[0]}" "$1${cache_dirs[0]}" -B
for cache_dir in ${cache_dirs[@]:1}; do
chroot_mount "$cache_dir" "$1${cache_dir}" -Br
done
for m in ${bindmounts_ro[@]}; do
chroot_mount "${m%%:*}" "$1${m##*:}" -Br
done
2016-09-15 23:58:18 +02:00
for m in ${bindmounts_rw[@]}; do
chroot_mount "${m%%:*}" "$1${m##*:}" -B
done
2014-11-17 05:44:56 +01:00
}
2014-11-12 02:19:58 +01:00
umask 0022
# Sanity check
2014-12-05 23:49:28 +01:00
if [[ ! -f "$working_dir/.manjaro-tools" ]]; then
2016-09-15 23:58:18 +02:00
die "'%s' does not appear to be a Manjaro chroot." "$working_dir"
2014-12-05 23:49:28 +01:00
elif [[ $(cat "$working_dir/.manjaro-tools") != $version ]]; then
2016-09-15 23:58:18 +02:00
die "chroot '%s' is not at version %s. Please rebuild." "$working_dir" "$version"
2014-11-12 02:19:58 +01:00
fi
2015-01-13 04:45:52 +01:00
chroot_api_mount "${working_dir}" || die "failed to setup API filesystems in chroot %s" "${working_dir}"
2014-11-12 02:19:58 +01:00
chroot_extra_mount "${working_dir}"
2014-11-12 02:19:58 +01:00
2015-01-13 13:41:28 +01:00
copy_hostconf "${working_dir}"
2014-11-12 02:19:58 +01:00
eval $(grep '^CARCH=' "$working_dir/etc/makepkg.conf")
${nosetarch} && unset CARCH
2014-11-12 21:04:31 +01:00
${CARCH:+setarch "$CARCH"} chroot "${working_dir}" "$@"