Skip to content

Instantly share code, notes, and snippets.

@awaxa
Created January 7, 2015 00:04
Show Gist options
  • Select an option

  • Save awaxa/a8c6f4f126077d07fa06 to your computer and use it in GitHub Desktop.

Select an option

Save awaxa/a8c6f4f126077d07fa06 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.pe_build.version = '3.3.2'
config.pe_build.download_root = 'http://s3.amazonaws.com/pe-builds/released/:version'
config.vm.box = 'puppetlabs/centos-6.5-64-nocm'
config.vm.provider :virtualbox do |vb|
vb.customize ['modifyvm', :id, '--memory', '4096']
vb.customize ['modifyvm', :id, '--cpus', '2']
end
config.vm.provision :pe_bootstrap do |pe|
pe.role = :master
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment