Browse Source

Hack to try to ensure nginx failures don't happen when matrix is installed

Bob Mottram 6 years ago
parent
commit
fe963a94d6
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      src/freedombone-upgrade

+ 7
- 0
src/freedombone-upgrade View File

126
 # If logging was left on then turn it off
126
 # If logging was left on then turn it off
127
 ${PROJECT_NAME}-logging off
127
 ${PROJECT_NAME}-logging off
128
 
128
 
129
+# This is a hack to fix nginx failures which happen sometimes
130
+# when matrix is installed
131
+if [ -d /etc/matrix ]; then
132
+    systemctl restart matrix
133
+    systemctl restart nginx
134
+fi
135
+
129
 # upgrading file prevents USB canary from activating
136
 # upgrading file prevents USB canary from activating
130
 if [ -f /tmp/.upgrading ]; then
137
 if [ -f /tmp/.upgrading ]; then
131
     rm /tmp/.upgrading
138
     rm /tmp/.upgrading