Some vagrant stuff

This commit is contained in:
Joshua B. Bussdieker
2014-06-12 12:59:05 -07:00
parent c6527574be
commit 22dc137459
4 changed files with 20 additions and 0 deletions
Vendored
+9
View File
@@ -0,0 +1,9 @@
Vagrant.configure("2") do |config|
config.vm.define "precise32" do |ubuntu|
ubuntu.vm.box = "hashicorp/precise32"
end
config.vm.define "precise64" do |ubuntu|
ubuntu.vm.box = "hashicorp/precise64"
end
end
+3
View File
@@ -0,0 +1,3 @@
#!/bin/bash
/vagrant/extra/vagrant/install-deps.sh
/vagrant/extra/vagrant/install-local.sh
+2
View File
@@ -0,0 +1,2 @@
#!/bin/bash
sudo apt-get -y install curl git mercurial bison make
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
rm -rf /home/vagrant/.gvm
cp -r /vagrant /home/vagrant/.gvm
echo "export GVM_ROOT=/vagrant
. \$GVM_ROOT/scripts/gvm-default" > /home/vagrant/.gvm/scripts/gvm
echo ". /home/vagrant/.gvm/scripts/gvm"