started on the package submit script

This commit is contained in:
eric 2004-07-12 22:12:42 +00:00
parent 7b9956f225
commit cbe2050420
5 changed files with 81 additions and 8 deletions

23
support/schema/reloadtestdb.sh Executable file
View file

@ -0,0 +1,23 @@
#!/bin/sh
mydir=`pwd`
if [ `basename $mydir` != "schema" ]; then
echo "you must be in the aur/support/schema directory to run this script"
exit
fi
echo "dropping old database..."
yes | mysqladmin -uaur -paur drop AUR
echo "recreating database..."
mysqladmin -uaur -paur create AUR
echo "recreating tables..."
mysql -uaur -paur AUR < ./aur-schema.sql
echo "loading dummy-data..."
bzcat ./dummy-data.sql.bz2 | mysql -uaur -paur AUR
echo "done."
exit