Browse Source

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

Bob Mottram 7 years ago
parent
commit
f724959e98
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/freedombone-app-pleroma

+ 1
- 1
src/freedombone-app-pleroma View File

92
     chmod +x $blocking_script_file
92
     chmod +x $blocking_script_file
93
 
93
 
94
     if ! grep -q "$blocking_script_file" /etc/crontab; then
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
     fi
96
     fi
97
 }
97
 }
98
 
98