2019-05-17 07:56:46 -04:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# provisioning script for vagrant boxes for testing the matrix-synapse debs.
|
|
|
|
#
|
|
|
|
# Will install the most recent matrix-synapse-py3 deb for this platform from
|
|
|
|
# the /debs directory.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
apt-get update
|
|
|
|
apt-get install -y lsb-release
|
|
|
|
|
2021-10-22 18:07:23 -04:00
|
|
|
deb=$(find /debs -name "matrix-synapse-py3_*+$(lsb_release -cs)*.deb" | sort | tail -n1)
|
2019-05-17 07:56:46 -04:00
|
|
|
|
|
|
|
debconf-set-selections <<EOF
|
|
|
|
matrix-synapse matrix-synapse/report-stats boolean false
|
|
|
|
matrix-synapse matrix-synapse/server-name string localhost:18448
|
|
|
|
EOF
|
|
|
|
|
|
|
|
dpkg -i "$deb"
|
|
|
|
|
2021-10-22 16:44:25 -04:00
|
|
|
sed -i -e 's/port: 8448$/port: 18448/; s/port: 8008$/port: 18008' /etc/matrix-synapse/homeserver.yaml
|
|
|
|
echo 'registration_shared_secret: secret' >> /etc/matrix-synapse/homeserver.yaml
|
2019-05-17 07:56:46 -04:00
|
|
|
systemctl restart matrix-synapse
|