config_app: let's ask a 12 character long password, makes test implementation easier in the core

This commit is contained in:
Alexandre Aubin 2021-09-06 01:18:10 +02:00 committed by GitHub
parent 7469e00fff
commit 750f43471b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ EOF
# SPECIFIC VALIDATORS FOR TOML SHORT KEYS
#=================================================
validate__arg8() {
if [[ "${#arg8}" -lt 8 ]]; then echo 'Too short password'; fi
if [[ "${#arg8}" -lt 12 ]]; then echo 'Too short password'; fi
}
#=================================================