installer.sh: put reconfigure output in a programbox

fixes: #172
This commit is contained in:
classabbyamp 2024-12-20 09:51:57 -05:00
parent b0ca895c47
commit 9179cc94f4
No known key found for this signature in database
GPG Key ID: 6BE0755918A4C7F5

View File

@ -1254,7 +1254,11 @@ install_packages() {
DIE 1
fi
xbps-reconfigure -r $TARGETDIR -f base-files >/dev/null 2>&1
chroot $TARGETDIR xbps-reconfigure -a
stdbuf -oL chroot $TARGETDIR xbps-reconfigure -a 2>&1 | \
DIALOG --title "Configuring base system packages..." --programbox 24 80
if [ $? -ne 0 ]; then
DIE 1
fi
}
enable_service() {