From d83545d4a118293d88c7640c4f1b98d86db1cbbb Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Mon, 2 Dec 2013 16:31:42 -0500 Subject: [PATCH] Set up simple vagrant box for testing --- .gitignore | 4 ++++ Vagrantfile | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 .gitignore create mode 100644 Vagrantfile 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