浏览代码

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
     fi
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
 function upgrade_xmpp {
389
 function upgrade_xmpp {
379
     if [ -d /etc/letsencrypt ]; then
390
     if [ -d /etc/letsencrypt ]; then
380
         prosody_groups=$(groups prosody)
391
         prosody_groups=$(groups prosody)
382
             usermod -a -G ssl-cert prosody
393
             usermod -a -G ssl-cert prosody
383
         fi
394
         fi
384
     fi
395
     fi
396
+    prosody_daemon_restart_script
385
     function_check update_prosody_modules
397
     function_check update_prosody_modules
386
     update_prosody_modules
398
     update_prosody_modules
387
     xmpp_onion_addresses /etc/prosody/prosody.cfg.lua
399
     xmpp_onion_addresses /etc/prosody/prosody.cfg.lua
1060
         exit 347682
1072
         exit 347682
1061
     fi
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
     ${PROJECT_NAME}-pass -u $MY_USERNAME -a xmpp -p "$XMPP_PASSWORD"
1077
     ${PROJECT_NAME}-pass -u $MY_USERNAME -a xmpp -p "$XMPP_PASSWORD"
1071
 
1078