From 9ea2d7b93ed3b92266334fd1966e33f8108afb6a Mon Sep 17 00:00:00 2001 From: vc95 <118903861+vc95@users.noreply.github.com> Date: Thu, 6 Apr 2023 01:45:45 +0200 Subject: [PATCH] Fix missing carriage return in create_site_conf.sh script --- templates/aws-refarch-wordpress-04-web.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/aws-refarch-wordpress-04-web.yaml b/templates/aws-refarch-wordpress-04-web.yaml index 4b90e7c..046929e 100644 --- a/templates/aws-refarch-wordpress-04-web.yaml +++ b/templates/aws-refarch-wordpress-04-web.yaml @@ -438,9 +438,9 @@ Resources: !Join [ "",[ "#!/bin/bash -xe\n", - "amazon-linux-extras enable php8.0", - "yum clean metadata", - "yum install php", + "amazon-linux-extras enable php8.0\n", + "yum clean metadata\n", + "yum -y install php\n", "if [ ! -f /etc/httpd/conf.d/", !Ref WPDirectory, ".conf ]; then\n", " touch /etc/httpd/conf.d/", !Ref WPDirectory, ".conf\n", " echo 'ServerName 127.0.0.1:80' >> /etc/httpd/conf.d/", !Ref WPDirectory, ".conf\n",