Created
April 3, 2014 04:22
-
-
Save damaya/9948239 to your computer and use it in GitHub Desktop.
Bootstrap sencillo máquina con vagrant
This file contains hidden or 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 | |
| apt-get update | |
| apt-get install -y apache2 | |
| sudo apt-get install -y php5 | |
| sudo apt-get install -y libapache2-mod-php5 | |
| sudo /etc/init.d/apache2 restart | |
| sudo apt-get install -y curl | |
| curl -sS https://getcomposer.org/installer | php | |
| rm -rf /var/www | |
| ln -fs /vagrant /var/www |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment