Created
January 4, 2016 22:29
-
-
Save morganestes/0a898a15c526a646a3b7 to your computer and use it in GitHub Desktop.
VVV post-provision script
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
| #!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment