arch-nspawn: avoid escaping mount_args

eval is no longer involved in the execution of systemd-nspawn, so we no
longer need a layer of escaping on the arguments.

Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
This commit is contained in:
Dave Reisner 2013-08-09 21:33:58 -04:00 committed by Pierre Schmitz
parent 8dbb02de4f
commit e0f7c21a68
1 changed files with 3 additions and 7 deletions

View File

@ -56,20 +56,16 @@ host_mirror=$(pacman -Sddp extra/devtools 2>/dev/null | sed -r 's#(.*/)extra/os/
# {{{ functions
build_mount_args() {
local p
declare -g mount_args=()
if [[ -n $host_mirror_path ]]; then
printf -v p '%q' "$host_mirror_path"
mount_args+=(--bind-ro="$p")
mount_args+=(--bind-ro="$host_mirror_path")
fi
printf -v p '%q' "${cache_dirs[0]}"
mount_args+=(--bind="$p")
mount_args+=(--bind="${cache_dirs[0]}")
for cache_dir in ${cache_dirs[@]:1}; do
printf -v p '%q' "$cache_dir"
mount_args+=(--bind-ro="$p")
mount_args+=(--bind-ro="$cache_dir")
done
}