#
#
#
#

Compatible : 
   - Python 2


Dépendances : 

   - python-yaml
   - python-mysqldb
   - pyscopg2

To create a non root account with CREATE DATABASE permission in mysql use :

This gives the ability to create database but no DROP or GRANT.
GRANT CREATE, INDEX, ALTER, CREATE USER ON *.* TO '<USER>'@'<IP>' IDENTIFIED BY '<password>' WITH GRANT OPTION;

This gives the ability to create and drop database but no GRANT.
GRANT CREATE, DROP, INDEX, ALTER, CREATE USER ON *.* TO '<USER>'@'<IP>' IDENTIFIED BY '<password>' WITH GRANT OPTION;

This gives all privileges CREATE DROP and GRANT.
GRANT ALL PRIVILEGES ON *.* TO '<USER>'@'<IP>' IDENTIFIED BY '<password>' WITH GRANT OPTION;
