Setup recommended golang environment

This commit is contained in:
Darren Coxall
2013-05-02 08:46:45 +01:00
parent 7f58e1e8d0
commit 30632f4aad
7 changed files with 52 additions and 0 deletions

12
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,12 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.box = "debian-607-x64-vbox4210"
config.vm.box_url = "http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210.box"
config.vm.provision :puppet do |puppet|
puppet.module_path = "modules"
puppet.manifests_path = "manifests"
puppet.manifest_file = "init.pp"
end
end