#!/bin/bash yum -y install httpd systemctl enable httpd systemctl start httpd echo '

Hello From Your Web Server!

' > /var/www/html/index.html