typo fixed
This commit is contained in:
parent
4524ebf944
commit
b0b8f6d793
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue