summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/Vagrantfile')
-rw-r--r--vendor/ruflin/elastica/Vagrantfile18
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/Vagrantfile b/vendor/ruflin/elastica/Vagrantfile
new file mode 100644
index 00000000..2deebbd4
--- /dev/null
+++ b/vendor/ruflin/elastica/Vagrantfile
@@ -0,0 +1,18 @@
+
+Vagrant.require_version ">= 1.4.0"
+
+Vagrant.configure("2") do |config|
+
+ config.vm.box = "ubuntu/precise32"
+
+ config.vm.network :private_network, ip: "10.10.10.10"
+
+ config.vm.provision "shell" do |sh|
+ sh.inline = "/bin/bash /vagrant/ansible/provision.sh"
+ end
+
+ config.vm.provider :virtualbox do |vb|
+ vb.customize ["modifyvm", :id, "--memory", "1024"]
+ end
+
+end