Skip to content

Instantly share code, notes, and snippets.

@smithbr
Created June 24, 2015 00:07
Show Gist options
  • Save smithbr/3b0c37b44cdf7574e82a to your computer and use it in GitHub Desktop.
Save smithbr/3b0c37b44cdf7574e82a to your computer and use it in GitHub Desktop.
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 2
# vb.gui = true
end
# config.vm.network "forwarded_port", guest: 80, host: 8080
# config.vm.synced_folder "../data", "/vagrant_data"
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.module_path = "puppet/modules"
puppet.manifest_file = "default.pp"
end
# config.vm.provision "shell", inline: <<-SHELL
# sudo apt-get update
# SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment