diff options
author | Erik Johnston <erik@matrix.org> | 2015-10-22 10:43:35 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-10-22 10:43:46 +0100 |
commit | 3ce1b8c70539795dfe060b3ea3e211181a730ed3 (patch) | |
tree | cc0a74c128a58247a3558bd6aa6ba1f569b36d0d /demo | |
parent | Merge pull request #321 from matrix-org/markjh/v2_sync_typing (diff) | |
download | synapse-3ce1b8c70539795dfe060b3ea3e211181a730ed3.tar.xz |
Don't keep appending report_stats to demo config
Diffstat (limited to 'demo')
-rwxr-xr-x | demo/start.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/demo/start.sh b/demo/start.sh index d90115ec97..dcc4d6f4fa 100755 --- a/demo/start.sh +++ b/demo/start.sh @@ -38,8 +38,12 @@ for port in 8080 8081 8082; do perl -p -i -e 's/^enable_registration:.*/enable_registration: true/g' $DIR/etc/$port.config - echo "full_twisted_stacktraces: true" >> $DIR/etc/$port.config - echo "report_stats: false" >> $DIR/etc/$port.config + if ! grep -F "full_twisted_stacktraces" -q $DIR/etc/$port.config; then + echo "full_twisted_stacktraces: true" >> $DIR/etc/$port.config + fi + if ! grep -F "report_stats" -q $DIR/etc/$port.config ; then + echo "report_stats: false" >> $DIR/etc/$port.config + fi python -m synapse.app.homeserver \ --config-path "$DIR/etc/$port.config" \ |