mirror of
https://github.com/wahyd4/gvm.git
synced 2026-08-09 04:46:19 +10:00
Some vagrant stuff
This commit is contained in:
Vendored
+9
@@ -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
|
||||
Executable
+3
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
/vagrant/extra/vagrant/install-deps.sh
|
||||
/vagrant/extra/vagrant/install-local.sh
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
sudo apt-get -y install curl git mercurial bison make
|
||||
Executable
+6
@@ -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"
|
||||
Reference in New Issue
Block a user