commit d83545d4a118293d88c7640c4f1b98d86db1cbbb Author: Andrew Tomaka Date: Mon Dec 2 16:31:42 2013 -0500 Set up simple vagrant box for testing diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6229fbc --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.vagrant +modules/* +.tmp/* +*.vdi diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..ed2dff8 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,8 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant::Config.run do |config| + config.vm.box = 'precise64' + config.vm.box_url = "http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210.box" + config.vm.network :hostonly, '192.168.111.20' +end