From: Steven Dake Date: Sun, 1 Apr 2012 23:59:51 +0000 (-0700) Subject: Updated wordpress single instance template to have quotes in proper place X-Git-Tag: 2014.1~2111 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=f4fa8645fba184b71b124a4c1cd68122c7c3ad1f;p=openstack-build%2Fheat-build.git Updated wordpress single instance template to have quotes in proper place Signed-off-by: Steven Dake --- diff --git a/templates/WordPress_Single_Instance.template b/templates/WordPress_Single_Instance.template index fb5fbed9..69d9b113 100644 --- a/templates/WordPress_Single_Instance.template +++ b/templates/WordPress_Single_Instance.template @@ -128,8 +128,8 @@ "mysqladmin -u root password '", { "Ref" : "DBRootPassword" }, "'\n", "cat >> /tmp/mysql-wordpress-config << EOF\n", "CREATE DATABASE ", { "Ref" : "DBName" }, ";\n", - "GRANT ALL PRIVILEGES ON ", { "Ref" : "DBName" }, ".* TO ", { "Ref" : "DBUsername" }, "@localhost\n", - "IDENTIFIED BY ", { "Ref" : "DBPassword" }, ";\n", + "GRANT ALL PRIVILEGES ON ", { "Ref" : "DBName" }, ".* TO \"", { "Ref" : "DBUsername" }, "\"@\"localhost\"\n", + "IDENTIFIED BY \"", { "Ref" : "DBPassword" }, "\";\n", "FLUSH PRIVILEGES;\n", "EXIT\n", "EOF\n",