#!/bin/bash
clear
echo "This script replaces the AvantFax database"
echo "and resets the admin password to password."
read -p "Press ENTER key to continue or Ctrl-C to abort..."
echo " "
echo "Replacing AvantFax database..."
mysql -u root -ppassw0rd < /root/avantfax.sql
echo "Done. Log back in as admin with PW of password."
echo " "
