until mysql -h mysql -u $MYSQL_ENV_MYSQL_USER -p$MYSQL_ENV_MYSQL_PASSWORD -e "show databases" 2>/dev/null;do
echo"WARNING: MySQL still not up. Trying again..."
sleep 10
let COUNTER-=1
if[$COUNTER -lt 1];then
echo"ERROR: MySQL connection timed out. Aborting."
exit1
fi
done
count=`mysql -h mysql -u $MYSQL_ENV_MYSQL_USER -p$MYSQL_ENV_MYSQL_PASSWORD -e "select count(*) from information_schema.tables where table_type='BASE TABLE' and table_schema='$MYSQL_ENV_MYSQL_DATABASE';"| tail -1`
if["$count"=="0"];then
echo"Database is empty. Importing PowerDNS schema..."
mysql -h mysql -u $MYSQL_ENV_MYSQL_USER -p$MYSQL_ENV_MYSQL_PASSWORD$MYSQL_ENV_MYSQL_DATABASE < /usr/share/doc/pdns-backend-mysql/schema.mysql.sql &&echo"Import done."