Przeglądaj źródła

Reduce pleroma blocking script frequency to 1 min

Bob Mottram 7 lat temu
rodzic
commit
d8bd3eeeff
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      src/freedombone-app-pleroma

+ 1
- 1
src/freedombone-app-pleroma Wyświetl plik

@@ -97,7 +97,7 @@ function create_pleroma_blocklist {
97 97
     chmod +x $blocking_script_file
98 98
 
99 99
     if ! grep -q "$blocking_script_file" /etc/crontab; then
100
-        echo "*/2            * *   *   *   root $blocking_script_file > /dev/null" >> /etc/crontab
100
+        echo "*/1            * *   *   *   root $blocking_script_file > /dev/null" >> /etc/crontab
101 101
     fi
102 102
 }
103 103