Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:#! /usr/local/bin/bash
if [ $# -ne 0 ]
then
echo "No arguments accepted to this script right now"
exit 1
fi
DB='vanilla'
TABLE='LUM_IpHistory'
INTERVAL=30
LOGFILE=$HOME'/trim-vanilla.log'
MYSQL_USER='sql'
MYSQL_PW='pw'
echo "Deleting records older than $INTERVAL days of IP history from $DB"
echo "$0 run at: `date`" >> $LOGFILE
/usr/local/bin/mysql -u $MYSQL_USER -p$MYSQL_PW -e "use $DB; DELETE FROM $TABLE WHERE DateLogged < DATE_SUB(NOW(), INTERVAL $INTERVAL DAY); OPTIMIZE TABLE $TABLE;" >> $LOGFILE
4 2 * * 0 /path/to/trim-vanilla-ip-history >> $HOME/trim-vanilla.log4 2 1 * * /path/to/trim-vanilla-ip-history >> $HOME/trim-vanilla.log
1 to 6 of 6