Is it possible to create a dynamic mysql database from fabric.
It seems to be stuck in a password hint
run('mysql -u %s -p %s -h %s ' % (env.mysqluser, env.mysqlpassword, env.mysqlhost), pty=True) run('CREATE DATABASE %s; ' % (dataname), pty=True) run('exit', pty=True)
fabric
bocca
source share