From 5894b06aaa0bac0013d78f5d01481da3d9bc3e89 Mon Sep 17 00:00:00 2001 From: yeah Date: Sun, 26 Mar 2017 23:21:28 +0700 Subject: [PATCH] Set default user password length to 8 in non-interactive setups To comply with #1098 and avoid failed setups while testing with Vagrant --- setup/firstuser.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/firstuser.sh b/setup/firstuser.sh index d0ce9c7e..d24fc370 100644 --- a/setup/firstuser.sh +++ b/setup/firstuser.sh @@ -35,7 +35,7 @@ if [ -z "`tools/mail.py user`" ]; then else # Use me@PRIMARY_HOSTNAME EMAIL_ADDR=me@$PRIMARY_HOSTNAME - EMAIL_PW=1234 + EMAIL_PW=12345678 echo echo "Creating a new administrative mail account for $EMAIL_ADDR with password $EMAIL_PW." echo @@ -54,4 +54,4 @@ if [ -z "`tools/mail.py user`" ]; then # Create an alias to which we'll direct all automatically-created administrative aliases. tools/mail.py alias add administrator@$PRIMARY_HOSTNAME $EMAIL_ADDR > /dev/null -fi \ No newline at end of file +fi