matrix-docker-ansible-deploy/roles/matrix-dendrite/templates/dendrite/usr-local-bin/matrix-dendrite-create-account.j2

13 lines
251 B
Plaintext
Raw Normal View History

#jinja2: lstrip_blocks: "True"
#!/bin/bash
if [ $# -ne 2 ]; then
echo "Usage: "$0" <username> <password>"
exit 1
fi
user=$1
password=$2
docker exec matrix-dendrite create-account --config /data/dendrite.yaml --user "$user" --password "$password"