2019-05-07 19:23:35 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2017-07-31 20:07:30 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-08-01 08:11:29 +00:00
|
|
|
if [ $# -ne 3 ]; then
|
2019-01-26 07:37:26 +00:00
|
|
|
echo "Usage: "$0" <username> <password> <admin access: 0 or 1>"
|
|
|
|
exit 1
|
2017-07-31 20:07:30 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
user=$1
|
|
|
|
password=$2
|
2017-08-01 08:11:29 +00:00
|
|
|
admin=$3
|
2017-07-31 20:07:30 +00:00
|
|
|
|
2017-08-01 08:11:29 +00:00
|
|
|
if [ "$admin" -eq "1" ]; then
|
2019-10-14 07:59:56 +00:00
|
|
|
docker exec matrix-synapse register_new_matrix_user -u "$user" -p "$password" -c /data/homeserver.yaml --admin http://localhost:8008
|
2017-08-11 05:21:34 +00:00
|
|
|
else
|
2019-10-14 07:59:56 +00:00
|
|
|
docker exec matrix-synapse register_new_matrix_user -u "$user" -p "$password" -c /data/homeserver.yaml --no-admin http://localhost:8008
|
2019-01-26 07:37:26 +00:00
|
|
|
fi
|