Created
October 29, 2014 08:15
-
-
Save jeremyworboys/9377ad18c1ab39e3b24f to your computer and use it in GitHub Desktop.
Provision V8Js
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
$provision_v8js = <<SCRIPT | |
apt-get install -y libv8-dev | |
yes | pecl install v8js-0.1.3 | |
echo "extension=v8js.so" > /etc/php5/mods-available/v8js.ini | |
php5enmod v8js | |
SCRIPT | |
config.vm.provision "shell", inline: $provision_v8js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment