Browse Source

generate identity server config

Bob Mottram 8 years ago
parent
commit
323855a95b
1 changed files with 14 additions and 0 deletions
  1. 14
    0
      src/freedombone-app-matrix

+ 14
- 0
src/freedombone-app-matrix View File

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