Skip to content

Instantly share code, notes, and snippets.

@fabiomaggio
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabiomaggio/8b15e843c6b18d8c5f79 to your computer and use it in GitHub Desktop.
Save fabiomaggio/8b15e843c6b18d8c5f79 to your computer and use it in GitHub Desktop.
Shell provisioner for a Whitelight screen
#!/usr/bin/env bash
# Update the system
apt-get update
# Install apache
apt-get install -y apache2
# Install php
apt-get install -y php5 php-pear php5-mysql
# Restart apache
/etc/init.d/apache2 restart
ln -fs /vagrant /var/www
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment