Selaa lähdekoodia

Run at a lower frequency to avoid occupying the database too much

Bob Mottram 7 vuotta sitten
vanhempi
commit
f724959e98
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1
    1
      src/freedombone-app-pleroma

+ 1
- 1
src/freedombone-app-pleroma Näytä tiedosto

@@ -92,7 +92,7 @@ function create_pleroma_blocklist {
92 92
     chmod +x $blocking_script_file
93 93
 
94 94
     if ! grep -q "$blocking_script_file" /etc/crontab; then
95
-        echo "*/1            * *   *   *   root $blocking_script_file > /dev/null" >> /etc/crontab
95
+        echo "*/2            * *   *   *   root $blocking_script_file > /dev/null" >> /etc/crontab
96 96
     fi
97 97
 }
98 98