Check WPA_PASSWORD length early
WPA_PASSWORD needs to be between 8 adn 63 characters. Check early to avoid hitting error in stage2.
This commit is contained in:
parent
271177a0f7
commit
024840034e
1 changed files with 5 additions and 0 deletions
5
build.sh
5
build.sh
|
@ -220,6 +220,11 @@ if [[ -n "${APT_PROXY}" ]] && ! curl --silent "${APT_PROXY}" >/dev/null ; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if [[ ${#WPA_PASSWORD} -lt 8 || ${#WPA_PASSWORD} -gt 63 ]] ; then
|
||||
echo "WPA_PASSWORD" must be between 8 and 63 characters
|
||||
exit 1
|
||||
fi
|
||||
|
||||
mkdir -p "${WORK_DIR}"
|
||||
log "Begin ${BASE_DIR}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue