mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-10 20:57:41 +01:00
Quote docker args in case inputs contain spaces
This commit is contained in:
parent
e32aaacaa7
commit
7ce80bc58e
@ -11,7 +11,7 @@ password=$2
|
|||||||
admin=$3
|
admin=$3
|
||||||
|
|
||||||
if [ "$admin" -eq "1" ]; then
|
if [ "$admin" -eq "1" ]; then
|
||||||
docker exec matrix-synapse register_new_matrix_user -u $user -p $password -c /data/homeserver.yaml --admin http://localhost:8008
|
docker exec matrix-synapse register_new_matrix_user -u "$user" -p "$password" -c /data/homeserver.yaml --admin http://localhost:8008
|
||||||
else
|
else
|
||||||
docker exec matrix-synapse register_new_matrix_user -u $user -p $password -c /data/homeserver.yaml --no-admin http://localhost:8008
|
docker exec matrix-synapse register_new_matrix_user -u "$user" -p "$password" -c /data/homeserver.yaml --no-admin http://localhost:8008
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user