From e3785aab9c3acbbb763ae19e8ad3fb511a0a1a6d Mon Sep 17 00:00:00 2001 From: funk-on-code <113871227+funk-on-code@users.noreply.github.com> Date: Wed, 30 Oct 2024 10:36:18 +1100 Subject: [PATCH] Update LUKS passphrase wording. (#50) Update install.sh Signed-off-by: funk-on-code <113871227+funk-on-code@users.noreply.github.com> --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 789d6e4..e501f71 100644 --- a/install.sh +++ b/install.sh @@ -67,11 +67,11 @@ luks_prompt(){ luks_passphrase_prompt () { if [ "${use_luks}" = '1' ]; then - output 'Enter your encryption passphrase (the password will not be shown on the screen):' + output 'Enter your encryption passphrase (the passphrase will not be shown on the screen):' read -r -s luks_passphrase if [ -z "${luks_passphrase}" ]; then - output 'You need to enter a passphrase.' + output 'To use encryption, you need to enter a passphrase.' luks_passphrase_prompt fi