1
0
Fork 0

Set up simple vagrant box for testing

This commit is contained in:
Andrew Tomaka 2013-12-02 16:31:42 -05:00
commit d83545d4a1
2 changed files with 12 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.vagrant
modules/*
.tmp/*
*.vdi

8
Vagrantfile vendored Normal file
View File

@ -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