6 lines
152 B
Bash
6 lines
152 B
Bash
#!/bin/bash
|
|
apt-get update -y
|
|
apt-get install -y apache2
|
|
systemctl start apache2
|
|
systemctl enable apache2
|
|
echo "Hello World!" > /var/www/html/index.html |