Skip to content

Instantly share code, notes, and snippets.

@robinloxley1
Created May 25, 2014 08:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robinloxley1/069320948c34a9bf32d6 to your computer and use it in GitHub Desktop.
Save robinloxley1/069320948c34a9bf32d6 to your computer and use it in GitHub Desktop.
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define :test_vm do |test_vm|
test_vm.vm.box = "ubuntu13.10_64"
test_vm.vm.network :private_network, ip: "192.168.32.2"
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--memory", "1024"]
end
test_vm.vm.provision :puppet do |puppet|
puppet.module_path = "modules"
puppet.manifests_path = "manifests"
puppet.manifest_file = "test_vm.pp"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment