logger.info("PostgreSQL database creation")
command = ['createdb', '-h', host, '-U', user, '-p', port, dbname]
process = Popen(command, stdout=PIPE, stderr=PIPE)
logger.info("PostgreSQL database creation")
command = ['createdb', '-h', host, '-U', user, '-p', port, dbname]
process = Popen(command, stdout=PIPE, stderr=PIPE)