typo fixed

This commit is contained in:
DeltaLima 2023-10-23 16:01:34 +02:00
parent 4524ebf944
commit b0b8f6d793
1 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ do
u|U)
CONTINUESTEP=false
while [ CONTINUESTEP == false ]
while [ $CONTINUESTEP != true ]
do
message "Do you want to set a password for '${RED}root${ENDCOLOR}'?"
read -p "[y/n] > " ROOTPASSCHANGE
@ -190,7 +190,7 @@ do
CONTINUESTEP=true
;;
n|no()
n|no)
message "leaving root password empty"
CONTINUESTEP=true
;;