Bob Mottram hace 8 años
padre
commit
39544a6b21
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4
    1
      src/freedombone-app-matrix

+ 4
- 1
src/freedombone-app-matrix Ver fichero

@@ -130,6 +130,9 @@ function add_user_matrix {
130 130
     ${PROJECT_NAME}-pass -u $new_username -a matrix -p "$new_user_password"
131 131
 
132 132
     read_config_param 'MATRIX_SECRET'
133
+    if [ -f /var/lib/matrix/.synapse/bin/activate ]; then
134
+        source /var/lib/matrix/.synapse/bin/activate
135
+    fi
133 136
     register_new_matrix_user -c ${MATRIX_DATA_DIR}/homeserver.yaml https://localhost:${MATRIX_PORT} -u "${new_username}" -p "${new_user_password}" -a
134 137
     if [ ! "$?" = "0" ]; then
135 138
         echo '1'
@@ -349,7 +352,7 @@ function install_matrix {
349 352
     echo 'Type=simple' >> /etc/systemd/system/matrix.service
350 353
     echo 'User=matrix' >> /etc/systemd/system/matrix.service
351 354
     echo "WorkingDirectory=/etc/matrix" >> /etc/systemd/system/matrix.service
352
-    echo "ExecStart=source /var/lib/matrix/.synapse/bin/activate && /usr/bin/python -m synapse.app.homeserver --config-path ${MATRIX_DATA_DIR}/homeserver.yaml" >> /etc/systemd/system/matrix.service
355
+    echo "ExecStart=/usr/bin/python -m synapse.app.homeserver --config-path ${MATRIX_DATA_DIR}/homeserver.yaml" >> /etc/systemd/system/matrix.service
353 356
     echo 'Restart=always' >> /etc/systemd/system/matrix.service
354 357
     echo 'RestartSec=10' >> /etc/systemd/system/matrix.service
355 358
     echo '' >> /etc/systemd/system/matrix.service