6 lines
127 B
Bash
6 lines
127 B
Bash
|
echo "installing apache "
|
||
|
sudo apt-get update
|
||
|
sudo apt-get install apache2 -y
|
||
|
sudo apt-get update
|
||
|
sudo service apache2 restart
|