Skip to content

Instantly share code, notes, and snippets.

@xander-miller
Created May 26, 2014 20:54
Show Gist options
  • Save xander-miller/5a0ced4b2ccbe9e4a8a3 to your computer and use it in GitHub Desktop.
Save xander-miller/5a0ced4b2ccbe9e4a8a3 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure('2') do |config|
config.vm.box = 'precise32'
config.vm.box_url = 'http://files.vagrantup.com/precise32.box'
config.vm.hostname = 'rails-dev-box'
config.vm.network :forwarded_port, guest: 3000, host: 3000
config.vm.provision :puppet do |puppet|
puppet.manifests_path = 'puppet/manifests'
puppet.module_path = 'puppet/modules'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment