From 06d30994335dfe67c6d0923f3d495e084bd81b70 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Fri, 25 Nov 2022 10:58:32 +0100 Subject: [PATCH] change message --- usr/lib/archboot/installer/configuration.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/lib/archboot/installer/configuration.sh b/usr/lib/archboot/installer/configuration.sh index 5e026f387..08b73b08c 100644 --- a/usr/lib/archboot/installer/configuration.sh +++ b/usr/lib/archboot/installer/configuration.sh @@ -3,12 +3,12 @@ check_root_password() { # check if empty password is set if chroot "${DESTDIR}" passwd -S root | cut -d ' ' -f2 | grep -q NP; then - DIALOG --msgbox "Setup detected no password set for root user,\nplease set password now." 6 60 + DIALOG --msgbox "Setup detected no password set for root user,\nplease set new password now." 6 60 set_password fi # check if account is locked if chroot "${DESTDIR}" passwd -S root | cut -d ' ' -f2 | grep -q L; then - DIALOG --msgbox "Setup detected locked account for root user,\nplease set password to unlock account now." 6 60 + DIALOG --msgbox "Setup detected locked account for root user,\nplease set new password to unlock account now." 6 60 set_password fi }