From: Steven Dake Date: Sun, 1 Apr 2012 20:35:53 +0000 (-0700) Subject: use << intead of << in Wordpress example X-Git-Tag: 2014.1~2114 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=7dee96f56d4225afebdce90eedc0ca3ccd2dcb5c;p=openstack-build%2Fheat-build.git use << intead of << in Wordpress example Signed-off-by: Steven Dake --- diff --git a/templates/WordPress_Single_Instance.template b/templates/WordPress_Single_Instance.template index ecc96a10..fb5fbed9 100644 --- a/templates/WordPress_Single_Instance.template +++ b/templates/WordPress_Single_Instance.template @@ -126,7 +126,7 @@ "systemctl start mysqld.service\n", "# Setup MySQL root password and create a user\n", "mysqladmin -u root password '", { "Ref" : "DBRootPassword" }, "'\n", - "cat >> /tmp/mysql-wordpress-config << EOF\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",