#!/usr/bin/env bash

sudo apt-get update

sudo apt-get install -y python-software-properties

sudo add-apt-repository -y ppa:ondrej/php5

sudo apt-get update

sudo apt-get install -y wget php5 apache2 php5-mcrypt php5-curl

# Apache stuff
sudo a2enmod rewrite

rm -rf /var/www
ln -fs /vagrant /var/www

sudo service apache2 restart