#!/bin/bash sudo yum install httpd -y echo "Server 3" | sudo tee /var/www/html/index.html sudo systemctl start httpd #!/bin/bash sudo yum install httpd -y echo "Server 4" | sudo tee /var/www/html/index.html sudo systemctl start httpd