瀏覽代碼

Add prosody daemon restart on upgrades

Bob Mottram 7 年之前
父節點
當前提交
7aedc27b12
共有 1 個檔案被更改,包括 13 行新增6 行删除
  1. 13
    6
      src/freedombone-app-xmpp

+ 13
- 6
src/freedombone-app-xmpp 查看文件

@@ -375,6 +375,17 @@ function update_prosody_modules {
375 375
     fi
376 376
 }
377 377
 
378
+function prosody_daemon_restart_script {
379
+    # On rare occasions the daemon appears to get stuck
380
+    # i.e. still active, but not accepting connections
381
+    # This ensures that it will unstick itself at least once per day
382
+    if [ ! -f /etc/cron.daily/prosody ]; then
383
+        echo '#!/bin/bash' > /etc/cron.daily/prosody
384
+        echo 'systemctl restart prosody' >> /etc/cron.daily/prosody
385
+        chmod +x /etc/cron.daily/prosody
386
+    fi
387
+}
388
+
378 389
 function upgrade_xmpp {
379 390
     if [ -d /etc/letsencrypt ]; then
380 391
         prosody_groups=$(groups prosody)
@@ -382,6 +393,7 @@ function upgrade_xmpp {
382 393
             usermod -a -G ssl-cert prosody
383 394
         fi
384 395
     fi
396
+    prosody_daemon_restart_script
385 397
     function_check update_prosody_modules
386 398
     update_prosody_modules
387 399
     xmpp_onion_addresses /etc/prosody/prosody.cfg.lua
@@ -1060,12 +1072,7 @@ function install_xmpp {
1060 1072
         exit 347682
1061 1073
     fi
1062 1074
 
1063
-    # On rare occasions the daemon appears to get stuck
1064
-    # i.e. still active, but not accepting connections
1065
-    # This ensures that it will unstick itself at least once per day
1066
-    echo '#!/bin/bash' > /etc/cron.daily/prosody
1067
-    echo 'systemctl restart prosody' >> /etc/cron.daily/prosody
1068
-    chmod +x /etc/cron.daily/prosody
1075
+    prosody_daemon_restart_script
1069 1076
 
1070 1077
     ${PROJECT_NAME}-pass -u $MY_USERNAME -a xmpp -p "$XMPP_PASSWORD"
1071 1078