fc3386dff7
It was trying to omit the `-a` flag, but that wasn't enough, because the underlying `register_new_matrix_user` command prompts interactively if it doesn't see the `-a` flag (it doesn't default to non-admin). We need to answer such interactive prompts.
17 lines
565 B
Django/Jinja
17 lines
565 B
Django/Jinja
#!/bin/bash
|
|
|
|
if [ $# -ne 3 ]; then
|
|
echo "Usage: "$0" <username> <password> <admin access: 0 or 1>"
|
|
exit 1
|
|
fi
|
|
|
|
user=$1
|
|
password=$2
|
|
admin=$3
|
|
|
|
if [ "$admin" -eq "1" ]; then
|
|
docker exec matrix-synapse register_new_matrix_user -a -u $user -p $password -c /data/homeserver.yaml https://localhost:8448
|
|
else
|
|
# If `-a` is not passed, we need to answer to an "admin: yes/no" question
|
|
echo 'no' | docker exec -i matrix-synapse register_new_matrix_user -u $user -p $password $extraFlags -c /data/homeserver.yaml https://localhost:8448
|
|
fi |