Adding install to Vagrantfile

This commit is contained in:
Nicolas Dextraze 2016-06-12 17:06:34 -07:00
parent a4baec07cd
commit 2ddcfaaeba

4
Vagrantfile vendored
View File

@ -66,6 +66,8 @@ Vagrant.configure("2") do |config|
# documentation for more information about their specific syntax and use.
config.vm.provision "shell", inline: <<-SHELL
apt-get update
/vagrant/scripts/bootstrap.sh
cd /vagrant
. ./scripts/bootstrap.sh
. ./scripts/install.sh
SHELL
end