Bob Mottram преди 8 години
родител
ревизия
39544a6b21
променени са 1 файла, в които са добавени 4 реда и са изтрити 1 реда
  1. 4
    1
      src/freedombone-app-matrix

+ 4
- 1
src/freedombone-app-matrix Целия файл

130
     ${PROJECT_NAME}-pass -u $new_username -a matrix -p "$new_user_password"
130
     ${PROJECT_NAME}-pass -u $new_username -a matrix -p "$new_user_password"
131
 
131
 
132
     read_config_param 'MATRIX_SECRET'
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
     register_new_matrix_user -c ${MATRIX_DATA_DIR}/homeserver.yaml https://localhost:${MATRIX_PORT} -u "${new_username}" -p "${new_user_password}" -a
136
     register_new_matrix_user -c ${MATRIX_DATA_DIR}/homeserver.yaml https://localhost:${MATRIX_PORT} -u "${new_username}" -p "${new_user_password}" -a
134
     if [ ! "$?" = "0" ]; then
137
     if [ ! "$?" = "0" ]; then
135
         echo '1'
138
         echo '1'
349
     echo 'Type=simple' >> /etc/systemd/system/matrix.service
352
     echo 'Type=simple' >> /etc/systemd/system/matrix.service
350
     echo 'User=matrix' >> /etc/systemd/system/matrix.service
353
     echo 'User=matrix' >> /etc/systemd/system/matrix.service
351
     echo "WorkingDirectory=/etc/matrix" >> /etc/systemd/system/matrix.service
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
     echo 'Restart=always' >> /etc/systemd/system/matrix.service
356
     echo 'Restart=always' >> /etc/systemd/system/matrix.service
354
     echo 'RestartSec=10' >> /etc/systemd/system/matrix.service
357
     echo 'RestartSec=10' >> /etc/systemd/system/matrix.service
355
     echo '' >> /etc/systemd/system/matrix.service
358
     echo '' >> /etc/systemd/system/matrix.service