[15:21] http://pastie.org/private/aedriwyhrntvtylnf0txgg [15:21] can anyone help me clean this up? I'm getting some errors atm [15:34] arkin, you're probably facing shell quote issues [15:34] avoid shell quote [15:35] instead of 'runcmd' having a bunch of strings, populate it with a bunch of arrays [15:35] not this [15:35] runcmd: [15:35] - mysql -e 'CREATE DATABASE \`{{ mysql_db }}\`;' [15:35] but this [15:35] runcmd: [15:35] - [mysql, -e 'CREATE DATABASE "{{ mysql_db }}";' [15:36] or whatever would be the right syntax there. [15:36] but basically then you can avoid shell getting in the way. [17:08] yea I am smoser [17:09] I fixed it messing around with " ' ` variations [17:09] thanks for your reply [17:14] arkin, really, though. get rid of the shell interpretation [17:14] its much more sane.