Don't include url when adding user

This commit is contained in:
Bob Mottram 2016-12-30 23:28:05 +00:00
parent 51ab10094e
commit f50846d0d3
1 changed files with 2 additions and 6 deletions

View File

@ -252,12 +252,8 @@ function add_user_matrix {
if [ -f /var/lib/matrix/.synapse/bin/activate ]; then
source /var/lib/matrix/.synapse/bin/activate
fi
register_new_matrix_user -c ${MATRIX_DATA_DIR}/homeserver.yaml https://${DEFAULT_DOMAIN_NAME}/matrix -u "${new_username}" -p "${new_user_password}" -a
if [ ! "$?" = "0" ]; then
echo '1'
else
echo "0"
fi
register_new_matrix_user -c ${MATRIX_DATA_DIR}/homeserver.yaml -u "${new_username}" -p "${new_user_password}" -a
echo "0"
}
function install_interactive_matrix {