We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0709eb5 commit 7ef362eCopy full SHA for 7ef362e
.gitignore
@@ -0,0 +1 @@
1
+.vagrant
mongodb/single-instance/Vagrantfile
@@ -0,0 +1,11 @@
+# -*- mode: ruby -*-
2
+# vi: set ft=ruby :
3
+
4
+Vagrant.configure("2") do |config|
5
+ config.vm.box = "Ubuntu precise 64 VMWare"
6
+ config.vm.box_url = "http://files.vagrantup.com/precise64_vmware.box"
7
+ config.vm.provision "shell", inline: "sudo apt-get update -y"
8
+ config.vm.provision "shell", inline: "echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/10gen.list"
9
+ config.vm.provision "shell", inline: "sudo apt-get install mongodb-10gen"
10
+ config.vm.provision "shell", inline: "sudo service mongodb start"
11
+end
0 commit comments