mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-04-10 04:39:22 +02:00
fix password A rules
This commit is contained in:
parent
181a35949f
commit
67b2f9b6ed
@ -103,8 +103,8 @@ if [ "${abcd}" = "a" ]; then
|
||||
fi
|
||||
|
||||
# check that password does not contain bad characters
|
||||
clearedResult=$(echo "${result}" | tr -dc '[:alnum:]-.' | tr -d ' ')
|
||||
if [ ${#clearedResult} != ${#result} ] || [ ${#clearedResult} -eq 0 ]; then
|
||||
clearedResult=$(echo "${password1}" | tr -dc '[:alnum:]-.' | tr -d ' ')
|
||||
if [ ${#clearedResult} != ${#password1} ] || [ ${#clearedResult} -eq 0 ]; then
|
||||
dialog --backtitle "RaspiBlitz - Setup" --msgbox "FAIL -> Contains bad characters\nPlease try again ..." 6 52
|
||||
sudo /home/admin/config.scripts/blitz.setpassword.sh a
|
||||
exit 1
|
||||
|
Loading…
x
Reference in New Issue
Block a user