Files
Cockatrice/servatrice/scripts/maint_logs
woogerboy21 ff5ea7fc1f Added log maint script
Added log maint script
2015-07-11 17:03:37 -04:00

5 lines
337 B
Bash

#!/bin/bash
#SCHEDULE WITH CRONTAB AND ADJUST THE INTERVALS FOR THE NUMBER OF DAYS OF LOGS TO KEEP IN THE DATABASE
SQLCONFFILE="./mysql.cnf" #set this to the path that contains the mysql.cnf file
mysql --defaults-file=$SQLCONFFILE -h localhost -e 'delete from servatrice.cockatrice_log where log_time < DATE_SUB(now(), INTERVAL 10 DAY)'