nix-tools/bin/chroot-run.in

142 lines
3.8 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
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=''
2015-06-03 17:53:35 +02:00
keep_mirrors=false
2014-11-12 02:19:58 +01:00
usage() {
2014-11-17 05:44:56 +01:00
echo "Usage: ${0##*/} [options] working-dir [run arguments]"
2014-11-13 21:17:59 +01:00
echo "A wrapper around chroot. Provides support for pacman."
2014-11-12 02:19:58 +01:00
echo
echo ' options:'
echo ' -C <file> Location of a pacman config file'
echo ' -M <file> Location of a makepkg config file'
echo ' -S <file> Location of a pacman-mirrors config file'
echo ' -c <dir> Set pacman cache'
2014-11-17 05:44:56 +01:00
echo ' -r <list> Bind mountargs ro'
echo ' -w <list> Bind mountargs rw'
echo ' List format [src1:target1,...,srcN:targetN]'
2015-01-15 06:22:42 +01:00
echo ' -B Use custom build mirror'
echo ' -K Keep mirrorlist (-B)'
2014-11-12 02:19:58 +01:00
echo ' -h This message'
exit 1
}
orig_argv=("$@")
2015-06-03 17:53:35 +02:00
opts='hKC:M:S:c:r:w:B:'
while getopts ${opts} arg; do
case "${arg}" in
2014-11-12 02:19:58 +01:00
C) pac_conf="$OPTARG" ;;
M) makepkg_conf="$OPTARG" ;;
S) mirrors_conf="$OPTARG" ;;
c) cache_dir="$OPTARG" ;;
2014-11-17 05:44:56 +01:00
r) mountargs_ro="$OPTARG" ;;
w) mountargs_rw="$OPTARG" ;;
2015-01-15 06:22:42 +01:00
B) build_mirror="$OPTARG" ;;
2015-06-03 17:53:35 +02:00
K) keep_mirrors=true ;;
2014-11-12 02:19:58 +01:00
h|?) usage ;;
*) error "invalid argument '$arg'"; usage ;;
esac
done
shift $(($OPTIND - 1))
(( $# < 1 )) && die 'You must specify a directory.'
check_root "$0" "${orig_argv[@]}"
working_dir=$(readlink -f "$1")
shift 1
[[ -z $working_dir ]] && die 'Please specify a working directory.'
if [[ -z $cache_dir ]]; then
cache_dirs=($(pacman -v 2>&1 | grep '^Cache Dirs:' | sed 's/Cache Dirs:\s*//g'))
else
cache_dirs=("$cache_dir")
fi
copy_hostconf () {
2015-01-13 13:41:28 +01:00
cp -a /etc/pacman.d/gnupg "$1/etc/pacman.d"
2014-11-12 02:19:58 +01:00
2015-01-13 13:41:28 +01:00
[[ -n $pac_conf ]] && cp $pac_conf "$1/etc/pacman.conf"
[[ -n $makepkg_conf ]] && cp $makepkg_conf "$1/etc/makepkg.conf"
[[ -n $mirrors_conf ]] && cp ${mirrors_conf} "$1/etc/pacman-mirrors.conf"
2015-01-15 06:22:42 +01:00
if [[ -n ${build_mirror} ]];then
build_mirror=${build_mirror}'/$repo/$arch'
2015-06-03 17:53:35 +02:00
if ${keep_mirrors}; then
set_branch "$1" "$(get_branch $1)"
2015-06-03 17:53:35 +02:00
else
echo "Server = ${build_mirror}" > "$1/etc/pacman.d/mirrorlist"
fi
2015-01-09 16:19:23 +01:00
else
2016-03-02 17:59:26 +01:00
set_branch "$1" "$(get_branch $1)"
2015-01-09 16:19:23 +01:00
fi
2015-01-13 13:41:28 +01: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
}
2015-01-13 13:41:28 +01:00
chroot_extra_umount() {
2016-01-07 03:05:04 +01:00
chroot_mount "/etc/resolv.conf" "$1/etc/resolv.conf" -B
chroot_mount "${cache_dirs[0]}" "$1${cache_dirs[0]}" -B
2014-11-17 05:44:56 +01:00
2016-01-07 03:05:04 +01:00
for cache_dir in ${cache_dirs[@]:1}; do
2015-02-23 19:35:10 +01:00
chroot_mount "$cache_dir" "$1${cache_dir}" -Br
2016-01-07 03:05:04 +01:00
done
2015-02-23 19:35:10 +01:00
2016-01-07 03:05:04 +01:00
if [[ -n ${mountargs_ro[@]} ]];then
2015-02-23 19:35:10 +01:00
local IFS=','
for m in ${mountargs_ro[@]}; do
chroot_mount "${m%%:*}" "$1${m##*:}" -Br
done
unset IFS
2016-01-07 03:05:04 +01:00
fi
2015-02-23 19:35:10 +01:00
2016-01-07 03:05:04 +01:00
if [[ -n ${mountargs_rw[@]} ]];then
2015-02-23 19:35:10 +01:00
local IFS=','
for m in ${mountargs_rw[@]}; do
chroot_mount "${m%%:*}" "$1${m##*:}" -B
done
unset IFS
2016-01-07 03:05:04 +01:00
fi
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
2014-11-12 02:19:58 +01: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
2014-11-12 02:19:58 +01:00
die "chroot '%s' is not at version %s. Please rebuild." "$working_dir" "$version"
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
2015-01-13 13:41:28 +01:00
chroot_extra_umount "${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")
2014-11-12 21:04:31 +01:00
${CARCH:+setarch "$CARCH"} chroot "${working_dir}" "$@"
kill_chroot_process "${working_dir}"