remove wrong message about entropy

This commit is contained in:
Tobias Powalowski 2022-11-25 20:38:46 +01:00
parent 3b26bf8e02
commit 07e8b14ccc

View file

@ -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