its not my script, its what vbulletin gave me when i downloaded it.... i have not made any changes other than the path to my config file. however, it is:
Code:
case "$1" in
backup)
if [ -n "$dbpassword" ]
then
passwordinfo=-p$dbpassword
fi
$mysqldumpcmd -h$servername -u$dbusername $passwordinfo --add-drop-table --add-locks --all --extended-insert --quick --compress $dbname > $database
$gzipcmd $database
;;
*)
echo "vb_backup.sh: Database backup script for vBulletin 3."
echo "Please use the following command to backup your vBulletin database:"
echo "./vb_backup.sh backup"
;;
esac
exit 0
starting on line 52 ends on 68