1
0
Fork 0
terraform-training/09_aws_vpc/userdata.sh

8 lines
142 B
Bash
Raw Permalink Normal View History

2020-05-14 10:33:26 +02:00
#!/bin/bash
yum install -y httpd
service httpd start
chkconfig httpd on
echo "hello world" > /var/www/html/index.html
systemctl enable httpd