From 1fbc6c8125d60f569dd99a483f47c91f6b6c784b Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Fri, 2 Dec 2022 10:02:40 +0900 Subject: [PATCH] Update password key length to 14 characters --- bin/create_user.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/create_user.sh b/bin/create_user.sh index 85a87ff..5603c35 100755 --- a/bin/create_user.sh +++ b/bin/create_user.sh @@ -205,7 +205,7 @@ while read i; do # Note we only create a password if we need it # password + store pwgen 10 1 -1 if [ -z "${_password}" ]; then - password=$(printf "%s" $(pwgen 10 1)); + password=$(printf "%s" $(pwgen 14 1)); else echo "! Override password set"; password=${_password};