Browse Source

Ensure that if prosody gets stuck it will unstick itself at least once per day

Bob Mottram 7 years ago
parent
commit
50408559bd
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      src/freedombone-app-xmpp

+ 8
- 0
src/freedombone-app-xmpp View File

544
     remove_onion_service xmpp 5222 5223 5269
544
     remove_onion_service xmpp 5222 5223 5269
545
 
545
 
546
     apt-get -yq remove --purge prosody
546
     apt-get -yq remove --purge prosody
547
+    rm /etc/cron.daily/prosody
547
     if [ -f $INSTALL_DIR/$prosody_modules_filename ]; then
548
     if [ -f $INSTALL_DIR/$prosody_modules_filename ]; then
548
         rm $INSTALL_DIR/$prosody_modules_filename
549
         rm $INSTALL_DIR/$prosody_modules_filename
549
     fi
550
     fi
1059
         exit 347682
1060
         exit 347682
1060
     fi
1061
     fi
1061
 
1062
 
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
1069
+
1062
     ${PROJECT_NAME}-pass -u $MY_USERNAME -a xmpp -p "$XMPP_PASSWORD"
1070
     ${PROJECT_NAME}-pass -u $MY_USERNAME -a xmpp -p "$XMPP_PASSWORD"
1063
 
1071
 
1064
     APP_INSTALLED=1
1072
     APP_INSTALLED=1