Set up simple vagrant box for testing
This commit is contained in:
commit
d83545d4a1
2 changed files with 12 additions and 0 deletions
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
*.vagrant
|
||||
modules/*
|
||||
.tmp/*
|
||||
*.vdi
|
8
Vagrantfile
vendored
Normal file
8
Vagrantfile
vendored
Normal 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
|
Loading…
Reference in a new issue