Browse Source

Merge pull request #281 from julianfoad/patch-2

Quote docker args in case inputs contain spaces
pull/286/head
Slavi Pantaleev 6 years ago
committed by GitHub
parent
commit
dbd78ac25b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      roles/matrix-synapse/templates/synapse/usr-local-bin/matrix-synapse-register-user.j2

+ 2
- 2
roles/matrix-synapse/templates/synapse/usr-local-bin/matrix-synapse-register-user.j2 View File

@@ -11,7 +11,7 @@ password=$2
admin=$3

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
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

Loading…
Cancel
Save