From 07e8b14ccca4b3fbbb3f71b7b87f7838f7be19d1 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Fri, 25 Nov 2022 20:38:46 +0100 Subject: [PATCH] remove wrong message about entropy --- usr/lib/archboot/installer/autoconfiguration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/autoconfiguration.sh b/usr/lib/archboot/installer/autoconfiguration.sh index f050057d3..bcf9025b7 100644 --- a/usr/lib/archboot/installer/autoconfiguration.sh +++ b/usr/lib/archboot/installer/autoconfiguration.sh @@ -70,7 +70,7 @@ auto_pacman() { if ! [[ -d ${DESTDIR}/etc/pacman.d/gnupg ]]; then DO_PACMAN_GPG="" - DIALOG --yesno "Would you like to copy pacman's GPG files to installed system?\nDuring boot pacman GPG entropy was generated by haveged,\nif you need your own entropy answer NO." 0 0 && DO_PACMAN_GPG="yes" + DIALOG --yesno "Would you like to copy pacman's GPG files to installed system?" 0 0 && DO_PACMAN_GPG="yes" if [[ "${DO_PACMAN_GPG}" = "yes" ]]; then cp -ar /etc/pacman.d/gnupg "${DESTDIR}"/etc/pacman.d 2>&1 fi