Last active
August 29, 2015 14:05
-
-
Save fabiomaggio/8b15e843c6b18d8c5f79 to your computer and use it in GitHub Desktop.
Shell provisioner for a Whitelight screen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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