1
0
mirror of https://github.com/tommytran732/Arch-Setup-Script synced 2024-11-21 17:11:34 -05:00

Update LUKS passphrase wording. (#50)

Update install.sh

Signed-off-by: funk-on-code <113871227+funk-on-code@users.noreply.github.com>
This commit is contained in:
funk-on-code 2024-10-30 10:36:18 +11:00 committed by GitHub
parent bd0855ef19
commit e3785aab9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -67,11 +67,11 @@ luks_prompt(){
luks_passphrase_prompt () { luks_passphrase_prompt () {
if [ "${use_luks}" = '1' ]; then 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 read -r -s luks_passphrase
if [ -z "${luks_passphrase}" ]; then 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 luks_passphrase_prompt
fi fi