Reduce pleroma blocking script frequency to 1 min

This commit is contained in:
Bob Mottram 2018-02-01 14:47:48 +00:00
parent 1dd303da3d
commit d8bd3eeeff
1 changed files with 1 additions and 1 deletions

View File

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