apache.sh 191 B

12345678
  1. #!/bin/bash
  2. # TODO: Get away from apt-get
  3. # TODO2: Does anything use apache2???
  4. sudo apt-get install -y apache2
  5. # Stop Apache; it starts after it is installed
  6. sudo /etc/init.d/apache2 stop