From 5343e330448c4df950bf0c7813ba2c9a3327f8f0 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 27 Jun 2023 06:43:12 +0200 Subject: [PATCH] fix db sync in real offline mode --- usr/lib/archboot/installer/pacman.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/pacman.sh b/usr/lib/archboot/installer/pacman.sh index 142a301b0..125b72c78 100644 --- a/usr/lib/archboot/installer/pacman.sh +++ b/usr/lib/archboot/installer/pacman.sh @@ -128,7 +128,7 @@ _prepare_pacman() { done [[ -e /etc/systemd/system/pacman-init.service ]] && systemctl stop pacman-init.service _dialog --infobox "Refreshing package database..." 3 40 - if ! ${_PACMAN} -Sy &>"${_LOG}"; then + if ! ${_PACMAN} -Sy ${_PACMAN_CONF} &>"${_LOG}"; then _dialog --msgbox "Pacman preparation failed! Check ${_LOG} for errors." 6 60 return 1 fi