VVV post-provision script
#!/bin/bash
#
# Runs commands directly after provision.sh completes, during setup for VVV.
# Installs Memcached for PHP (VVV already loads Memcached, just not the PHP module)
apt-get install php5-memcached -y
# Installs Redis and makes it available to PHP
apt-get install redis-server php5-redis -y