From 66f37ab07520d8c11a1a695fedd30d60d32ead3f Mon Sep 17 00:00:00 2001 From: Morten Linderud Date: Tue, 24 Sep 2024 10:12:41 +0200 Subject: [PATCH] pacstrap: disable sandbox Fixes: https://gitlab.archlinux.org/archlinux/arch-install-scripts/-/issues/68 Signed-off-by: Morten Linderud --- pacstrap.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pacstrap.in b/pacstrap.in index c993565..674ed98 100644 --- a/pacstrap.in +++ b/pacstrap.in @@ -139,7 +139,7 @@ shift [[ -d $newroot ]] || die "%s is not a directory" "$newroot" -pacman_args+=("$pacmode" "${@:-base}" --config="$pacman_config") +pacman_args+=("$pacmode" "${@:-base}" --config="$pacman_config" --disable-sandbox) if (( ! hostcache )); then pacman_args+=(--cachedir="$newroot/var/cache/pacman/pkg")