|
@@ -187,6 +187,17 @@ function matrix_generate_homeserver_file {
|
187
|
187
|
--server-name ${DEFAULT_DOMAIN_NAME}
|
188
|
188
|
}
|
189
|
189
|
|
|
190
|
+function matrix_generate_identityserver_file {
|
|
191
|
+ local filepath="${1}"
|
|
192
|
+
|
|
193
|
+ cd /etc/matrix
|
|
194
|
+ python -m sydent.sydent \
|
|
195
|
+ --config-path "${filepath}" \
|
|
196
|
+ --generate-config \
|
|
197
|
+ --report-stats ${REPORT_STATS} \
|
|
198
|
+ --server-name ${DEFAULT_DOMAIN_NAME}
|
|
199
|
+}
|
|
200
|
+
|
190
|
201
|
function matrix_configure_homeserver_yaml {
|
191
|
202
|
local turnkey="${1}"
|
192
|
203
|
local filepath="${2}"
|
|
@@ -448,6 +459,9 @@ function install_identity_server {
|
448
|
459
|
exit 798362
|
449
|
460
|
fi
|
450
|
461
|
|
|
462
|
+ function_check matrix_generate_identityserver_file
|
|
463
|
+ matrix_generate_identityserver_file /etc/sydent/sydent.conf
|
|
464
|
+
|
451
|
465
|
if [ ! -f /etc/sydent/sydent.conf ]; then
|
452
|
466
|
echo $'Matrix identity server configuration not generated'
|
453
|
467
|
exit 72528
|